.styleci.yml 666 B

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