.php-cs-fixer.dist.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. $finder = PhpCsFixer\Finder::create()
  3. ->in('demo')
  4. ->in('Highlight')
  5. ->in('HighlightUtilities')
  6. ->in('test')
  7. ->in('tools')
  8. ->exclude('lib_dojo')
  9. ->exclude('lib_highlight')
  10. ;
  11. $config = new PhpCsFixer\Config();
  12. return $config
  13. ->setRules([
  14. '@PSR1' => true,
  15. '@PSR2' => true,
  16. '@Symfony' => true,
  17. 'array_indentation' => true,
  18. 'array_syntax' => ['syntax' => 'long'],
  19. 'concat_space' => ['spacing' => 'one'],
  20. 'echo_tag_syntax' => ['format' => 'short'],
  21. 'no_alias_language_construct_call' => false,
  22. 'no_alternative_syntax' => false,
  23. 'no_useless_else' => true,
  24. 'no_useless_return' => true,
  25. 'phpdoc_align' => true,
  26. 'phpdoc_order' => true,
  27. 'phpdoc_trim_consecutive_blank_line_separation' => true,
  28. 'single_quote' => false,
  29. 'ternary_to_null_coalescing' => false,
  30. 'trailing_comma_in_multiline' => true,
  31. 'visibility_required' => false,
  32. 'yoda_style' => [
  33. 'equal' => false,
  34. 'identical' => false,
  35. ],
  36. ])
  37. ->setFinder($finder)
  38. ;