add more path to cs-fix

This commit is contained in:
sunxyw 2022-12-31 20:12:45 +08:00
parent aee7fa332a
commit a62e950870
No known key found for this signature in database
GPG Key ID: F391C42B19AFFC98
2 changed files with 6 additions and 2 deletions

3
.gitignore vendored
View File

@ -82,3 +82,6 @@ package-lock.json
/.tool-version
.DS_Store
### PHP CS Fixer ###
.php-cs-fixer.cache

View File

@ -71,5 +71,6 @@ return (new PhpCsFixer\Config())
PhpCsFixer\Finder::create()
->in(__DIR__ . '/src')
->in(__DIR__ . '/tests')
)
->setUsingCache(false);
->in(__DIR__ . '/config')
->in(__DIR__ . '/bin')
);