add more path to cs-fix

This commit is contained in:
sunxyw
2022-12-31 20:12:45 +08:00
parent aee7fa332a
commit a62e950870
2 changed files with 6 additions and 2 deletions

3
.gitignore vendored
View File

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

View File

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