From 3958ce8715df6b6337046c5dc67fa80718427ec6 Mon Sep 17 00:00:00 2001 From: nobodyatroot <35878315+nobodyatroot@users.noreply.github.com> Date: Sun, 12 May 2024 08:29:54 -0500 Subject: [PATCH] remove node_modules and vendor dirs from linter --- .php-cs-fixer.dist.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index b79147282..e25c061b3 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -4,7 +4,11 @@ $finder = (new PhpCsFixer\Finder()) ->in(__DIR__) - ->exclude('var') + ->exclude([ + 'var', + 'node_modules', + 'vendor', + ]) ; return (new PhpCsFixer\Config())