Skip to content

Commit

Permalink
Improved .php-cs-fixer.dist.php
Browse files Browse the repository at this point in the history
  • Loading branch information
vudaltsov committed Nov 16, 2023
1 parent bc64cea commit a27f300
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@
use PHPyh\CodingStandard\PhpCsFixerCodingStandard;

$finder = PhpCsFixer\Finder::create()
->in([
__DIR__ . '/src',
__DIR__ . '/tests',
])
->append([
__FILE__,
]);
->in(__DIR__)
->exclude('var')
->append([__FILE__]);

$config = (new PhpCsFixer\Config())
->setFinder($finder)
Expand Down

0 comments on commit a27f300

Please sign in to comment.