Skip to content

Commit

Permalink
Use correct path to strict rules file (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
rieschl authored Aug 21, 2023
1 parent 9fa17af commit 59f6f09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
use PhpCsFixer\Finder;

$finder = Finder::create()->in(__DIR__)->exclude('tests/fixtures');
return Config::strict($finder);
return Config::basic($finder);
2 changes: 1 addition & 1 deletion Eventjet/PhpCsFixer/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private static function basicRules(): array
*/
private static function strictRules(): array
{
return require(__DIR__ . '/../../php-cs-fixer-rules.php');
return require(__DIR__ . '/../../php-cs-fixer-strict-rules.php');
}

private static function createFinder(): Finder
Expand Down

0 comments on commit 59f6f09

Please sign in to comment.