diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 91fc1d9..f3979b5 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -13,6 +13,7 @@ $config ->notPath('l10n') ->notPath('node_modules') ->notPath('src') + ->notPath('gen') ->notPath('vendor') ->in(__DIR__); diff --git a/composer.json b/composer.json index 39a2d64..7f03ba7 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "post-update-cmd": [ "@composer bin all update --ansi" ], - "lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l", + "lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './build/*' -not -path './gen/*' -print0 | xargs -0 -n1 php -l", "cs:check": "php-cs-fixer fix --dry-run --diff", "cs:fix": "php-cs-fixer fix", "psalm": "psalm --threads=1 --no-cache",