Skip to content

Commit

Permalink
remove node_modules and vendor dirs from linter
Browse files Browse the repository at this point in the history
  • Loading branch information
nobodyatroot committed May 12, 2024
1 parent e218282 commit 3958ce8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

$finder = (new PhpCsFixer\Finder())
->in(__DIR__)
->exclude('var')
->exclude([
'var',
'node_modules',
'vendor',
])
;

return (new PhpCsFixer\Config())
Expand Down

0 comments on commit 3958ce8

Please sign in to comment.