adding kirby3-janitor
This commit is contained in:
19
site/plugins/kirby3-janitor/.php-cs-fixer.dist.php
Normal file
19
site/plugins/kirby3-janitor/.php-cs-fixer.dist.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
|
||||
$finder = PhpCsFixer\Finder::create()
|
||||
->exclude('content')
|
||||
->exclude('kirby')
|
||||
->exclude('node_modules')
|
||||
//->exclude('site/plugins')
|
||||
->exclude('src')
|
||||
->exclude('vendor')
|
||||
->in(__DIR__)
|
||||
;
|
||||
|
||||
return (new PhpCsFixer\Config())
|
||||
->setRules([
|
||||
'@PSR12' => true,
|
||||
])
|
||||
->setFinder($finder)
|
||||
;
|
||||
Reference in New Issue
Block a user