PER-CS2.0.rst 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  1. =======================
  2. Rule set ``@PER-CS2.0``
  3. =======================
  4. Rules that follow `PER Coding Style 2.0 <https://www.php-fig.org/per/coding-style/>`_.
  5. Rules
  6. -----
  7. - `@PER-CS1.0 <./PER-CS1.0.rst>`_
  8. - `array_indentation <./../rules/whitespace/array_indentation.rst>`_
  9. - `array_syntax <./../rules/array_notation/array_syntax.rst>`_
  10. - `cast_spaces <./../rules/cast_notation/cast_spaces.rst>`_
  11. - `concat_space <./../rules/operator/concat_space.rst>`_ with config:
  12. ``['spacing' => 'one']``
  13. - `function_declaration <./../rules/function_notation/function_declaration.rst>`_ with config:
  14. ``['closure_fn_spacing' => 'none']``
  15. - `method_argument_space <./../rules/function_notation/method_argument_space.rst>`_
  16. - `new_with_parentheses <./../rules/operator/new_with_parentheses.rst>`_ with config:
  17. ``['anonymous_class' => false]``
  18. - `single_line_empty_body <./../rules/basic/single_line_empty_body.rst>`_
  19. - `single_space_around_construct <./../rules/language_construct/single_space_around_construct.rst>`_ with config:
  20. ``['constructs_followed_by_a_single_space' => ['abstract', 'as', 'case', 'catch', 'class', 'const', 'const_import', 'do', 'else', 'elseif', 'enum', 'final', 'finally', 'for', 'foreach', 'function', 'function_import', 'if', 'insteadof', 'interface', 'match', 'named_argument', 'namespace', 'new', 'private', 'protected', 'public', 'readonly', 'static', 'switch', 'trait', 'try', 'type_colon', 'use', 'use_lambda', 'while'], 'constructs_preceded_by_a_single_space' => ['as', 'else', 'elseif', 'use_lambda']]``
  21. - `trailing_comma_in_multiline <./../rules/control_structure/trailing_comma_in_multiline.rst>`_ with config:
  22. ``['after_heredoc' => true, 'elements' => ['arguments', 'array_destructuring', 'arrays', 'match', 'parameters']]``