Olivier Massot 1 rok pred
rodič
commit
f0dd8f2438
1 zmenil súbory, kde vykonal 10 pridanie a 1 odobranie
  1. 10 1
      .php-cs-fixer.dist.php

+ 10 - 1
.php-cs-fixer.dist.php

@@ -2,7 +2,16 @@
 
 $finder = (new PhpCsFixer\Finder())
     ->in(__DIR__)
-    ->exclude('var')
+    ->exclude([
+        'bin',
+        'old',
+        'public',
+        'var',
+        'vendor',
+    ])
+    ->notPath([
+        'rector.php',
+    ])
 ;
 
 return (new PhpCsFixer\Config())