.php-cs-fixer.dist.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. $finder = PhpCsFixer\Finder::create()
  3. ->ignoreDotFiles(false)
  4. ->ignoreVCSIgnored(true)
  5. ->in(__DIR__)
  6. ;
  7. return (new PhpCsFixer\Config())
  8. ->setRules([
  9. '@PSR2' => true,
  10. 'array_syntax' => ['syntax' => 'short'],
  11. 'not_operator_with_successor_space' => true,
  12. 'no_extra_blank_lines' => [
  13. 'tokens' => [
  14. 'curly_brace_block',
  15. 'extra',
  16. 'parenthesis_brace_block',
  17. 'throw',
  18. 'use',
  19. ],
  20. ],
  21. 'no_unused_imports' => true,
  22. 'ordered_imports' => ['sort_algorithm' => 'alpha'],
  23. 'ternary_operator_spaces' => true,
  24. 'single_blank_line_before_namespace' => true,
  25. // PSR-12
  26. 'blank_line_after_opening_tag' => true,
  27. 'braces' => ['allow_single_line_closure' => true],
  28. 'compact_nullable_typehint' => true,
  29. 'concat_space' => ['spacing' => 'one'],
  30. 'declare_equal_normalize' => ['space' => 'none'],
  31. 'function_typehint_space' => true,
  32. 'new_with_braces' => true,
  33. 'method_argument_space' => ['on_multiline' => 'ensure_fully_multiline'],
  34. 'no_empty_statement' => true,
  35. 'no_leading_import_slash' => true,
  36. 'no_leading_namespace_whitespace' => true,
  37. 'no_whitespace_in_blank_line' => true,
  38. 'return_type_declaration' => ['space_before' => 'none'],
  39. 'single_trait_insert_per_statement' => true,
  40. ])
  41. ->setFinder($finder);