.php_cs.dist 333 B

123456789101112131415
  1. <?php
  2. return PhpCsFixer\Config::create()
  3. ->setRules([
  4. '@PSR2' => true,
  5. 'concat_space' => ['spacing' => 'one'],
  6. 'no_unused_imports' => true,
  7. 'method_argument_space' => false,
  8. ])
  9. ->setFinder(
  10. PhpCsFixer\Finder::create()
  11. ->notPath('firestore')
  12. ->in(__DIR__)
  13. )
  14. ;