Olivier Massot преди 1 година
родител
ревизия
f0dd8f2438
променени са 1 файла, в които са добавени 10 реда и са изтрити 1 реда
  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())