We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fa17af commit 59f6f09Copy full SHA for 59f6f09
.php-cs-fixer.dist.php
@@ -6,4 +6,4 @@
6
use PhpCsFixer\Finder;
7
8
$finder = Finder::create()->in(__DIR__)->exclude('tests/fixtures');
9
-return Config::strict($finder);
+return Config::basic($finder);
Eventjet/PhpCsFixer/Config.php
@@ -43,7 +43,7 @@ private static function basicRules(): array
43
*/
44
private static function strictRules(): array
45
{
46
- return require(__DIR__ . '/../../php-cs-fixer-rules.php');
+ return require(__DIR__ . '/../../php-cs-fixer-strict-rules.php');
47
}
48
49
private static function createFinder(): Finder
0 commit comments