From 63fc9391b41e4a4b57a209c8a815f22c8ea9b7b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Benoist?= Date: Wed, 25 Nov 2020 08:46:45 +0100 Subject: [PATCH] Update .php_cs Exclude `node_modules` from PHP-CS-Fixer, we don't care about linting deps files --- .php_cs | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs b/.php_cs index 8bc79a956..9ee02779b 100644 --- a/.php_cs +++ b/.php_cs @@ -38,6 +38,7 @@ return PhpCsFixer\Config::create() ->setFinder( PhpCsFixer\Finder::create() ->exclude([ + 'node_modules', 'vendor', 'var', 'web'