diff --git a/.gitignore b/.gitignore index 1cb7676d..7d1294ec 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ error.log /tests/test_app/config/TestsMigrations/schema-dump-test.lock /tests/test_app/Plugin/TestBlog/config/Migrations/* .phpunit.cache +.phpcs.cache .ddev # IDE and editor specific files # diff --git a/composer.json b/composer.json index 1c3779aa..2f2b5439 100644 --- a/composer.json +++ b/composer.json @@ -68,8 +68,8 @@ "@stan", "@test" ], - "cs-check": "phpcs --parallel=16 -p", - "cs-fix": "phpcbf --parallel=16 -p", + "cs-check": "phpcs", + "cs-fix": "phpcbf", "phpstan": "tools/phpstan analyse", "stan": "@phpstan", "stan-baseline": "tools/phpstan --generate-baseline", diff --git a/phpcs.xml b/phpcs.xml index 7a7a8a87..e89659f6 100644 --- a/phpcs.xml +++ b/phpcs.xml @@ -1,6 +1,9 @@ - + + + + src/ tests/