You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
550 B
25 lines
550 B
<?php |
|
|
|
return PhpCsFixer\Config::create() |
|
->setUsingCache(true) |
|
->setRiskyAllowed(true) |
|
->setRules([ |
|
'concat_space' => [ |
|
'spacing' => 'one', |
|
], |
|
'ordered_imports' => true, |
|
'phpdoc_order' => true, |
|
'strict_comparison' => true, |
|
'strict_param' => true, |
|
'array_syntax' => [ |
|
'syntax' => 'long', |
|
], |
|
]) |
|
->setFinder( |
|
PhpCsFixer\Finder::create() |
|
->exclude([ |
|
'vendor', |
|
]) |
|
->in(__DIR__) |
|
) |
|
;
|
|
|