Skip to content

Commit

Permalink
Trim the excluded directory list.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalloc committed Feb 10, 2018
1 parent 636cb08 commit 32c5376
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,10 @@

$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude(
array(
'artifacts',
'assets',
'bower_components',
'build',
'node_modules',
'src-web',
'src-generated',
'vendor',
)
);
->exclude([
'artifacts',
'vendor',
]);

return PhpCsFixer\Config::create()
->setFinder($finder)
Expand Down

0 comments on commit 32c5376

Please sign in to comment.