1
0

.styleci.yml 643 B

1234567891011121314151617181920212223242526272829303132333435
  1. preset: recommended
  2. risky: false
  3. enabled:
  4. - align_equals
  5. - concat_with_spaces
  6. - no_empty_comment
  7. - pre_increment
  8. disabled:
  9. - blank_line_after_opening_tag
  10. - blank_line_before_return
  11. - blank_line_before_throw
  12. - blank_line_before_try
  13. - concat_without_spaces
  14. - declare_equal_normalize
  15. - heredoc_to_nowdoc
  16. - method_argument_space_strict
  17. - new_with_braces
  18. - no_alternative_syntax
  19. - phpdoc_align
  20. - phpdoc_no_access
  21. - phpdoc_separation
  22. - phpdoc_single_line_var_spacing
  23. - phpdoc_summary
  24. - post_increment
  25. - single_line_after_imports
  26. - unalign_equals
  27. finder:
  28. path:
  29. - "lib/"
  30. - "tpl/"
  31. - "tst/"