Update .php_cs

Exclude `node_modules` from PHP-CS-Fixer, we don't care about linting deps files
This commit is contained in:
Jérémy Benoist 2020-11-25 08:46:45 +01:00 committed by GitHub
parent e739dad2ef
commit 63fc9391b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,6 +38,7 @@ return PhpCsFixer\Config::create()
->setFinder(
PhpCsFixer\Finder::create()
->exclude([
'node_modules',
'vendor',
'var',
'web'