Skip to content

Commit

Permalink
Exclude node_modules and vendor directories from PHP linter (#775)
Browse files Browse the repository at this point in the history
Co-authored-by: e-five <[email protected]>
  • Loading branch information
debounced and e-five256 authored May 12, 2024
1 parent e218282 commit 06d70a0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@

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

return (new PhpCsFixer\Config())
Expand Down

0 comments on commit 06d70a0

Please sign in to comment.