ci: file exclusion

This commit is contained in:
Maël Gangloff 2024-12-31 00:20:43 +01:00
parent 2e22147f00
commit 28462683f9
No known key found for this signature in database
GPG Key ID: 11FDC81C24A7F629

View File

@ -2,12 +2,11 @@
$finder = (new PhpCsFixer\Finder()) $finder = (new PhpCsFixer\Finder())
->in(__DIR__) ->in(__DIR__)
->exclude('var') ->exclude('node_modules')
; ->exclude('var');
return (new PhpCsFixer\Config()) return (new PhpCsFixer\Config())
->setRules([ ->setRules([
'@Symfony' => true, '@Symfony' => true,
]) ])
->setFinder($finder) ->setFinder($finder);
;