Update coding standards

This commit is contained in:
Vincent Langlet
2024-11-30 09:51:13 +01:00
committed by Fabien Potencier
parent 14fc89ebea
commit 07a4ed17d2
+4 -4
View File
@@ -88,17 +88,17 @@ standards:
[1, 2, 3]
{'name': 'Fabien'}
* Do not put any spaces before and after ``=`` in macro argument declarations:
* Put exactly one space before and after ``=`` in macro argument declarations:
.. code-block:: twig
{% macro html_input(class="input") %}
{% macro html_input(class = "input") %}
* Put exactly one space after the ``:`` sign in macro argument declarations:
* Put exactly one space after the ``:`` sign when using named arguments:
.. code-block:: twig
{% macro html_input(class: "input") %}
{{ html_input(class: "input") }}
* Use snake case for all variable names (provided by the application and
created in templates), function/filter/test names, argument names and named