add php cs fixer
This commit is contained in:
parent
921c1e6401
commit
af0484faf6
2 changed files with 29 additions and 0 deletions
28
.php-cs-fixer.dist.php
Normal file
28
.php-cs-fixer.dist.php
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
use PhpCsFixer\Config;
|
||||||
|
use PhpCsFixer\Finder;
|
||||||
|
|
||||||
|
return (new Config())
|
||||||
|
->setRiskyAllowed(false)
|
||||||
|
->setRules([
|
||||||
|
'@auto' => true
|
||||||
|
])
|
||||||
|
// 💡 by default, Fixer looks for `*.php` files excluding `./vendor/` - here, you can groom this config
|
||||||
|
->setFinder(
|
||||||
|
(new Finder())
|
||||||
|
// 💡 root folder to check
|
||||||
|
->in(__DIR__)
|
||||||
|
// 💡 additional files, eg bin entry file
|
||||||
|
// ->append([__DIR__.'/bin-entry-file'])
|
||||||
|
// 💡 folders to exclude, if any
|
||||||
|
// ->exclude([/* ... */])
|
||||||
|
// 💡 path patterns to exclude, if any
|
||||||
|
// ->notPath([/* ... */])
|
||||||
|
// 💡 extra configs
|
||||||
|
// ->ignoreDotFiles(false) // true by default in v3, false in v4 or future mode
|
||||||
|
// ->ignoreVCS(true) // true by default
|
||||||
|
)
|
||||||
|
;
|
||||||
|
|
@ -14,6 +14,7 @@
|
||||||
cypress
|
cypress
|
||||||
php85
|
php85
|
||||||
php85Packages.composer
|
php85Packages.composer
|
||||||
|
php85Packages.php-cs-fixer
|
||||||
phpunit
|
phpunit
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue