listen ansichten verbessert
This commit is contained in:
19
.php-cs-fixer.dist.php
Normal file
19
.php-cs-fixer.dist.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
$finder = PhpCsFixer\Finder::create()
|
||||
->in([
|
||||
__DIR__ . '/config',
|
||||
__DIR__ . '/lib',
|
||||
__DIR__ . '/pages',
|
||||
__DIR__ . '/tests',
|
||||
])
|
||||
->name('*.php');
|
||||
|
||||
return (new PhpCsFixer\Config())
|
||||
->setRiskyAllowed(false)
|
||||
->setRules([
|
||||
'@PSR12' => true,
|
||||
'ordered_imports' => ['sort_algorithm' => 'alpha'],
|
||||
'no_unused_imports' => true,
|
||||
])
|
||||
->setFinder($finder);
|
||||
Reference in New Issue
Block a user