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.
28 lines
967 B
28 lines
967 B
<?php |
|
|
|
return PhpCsFixer\Config::create() |
|
->setRiskyAllowed(true) |
|
->setRules([ |
|
'@Symfony' => true, |
|
'@Symfony:risky' => true, |
|
'combine_consecutive_unsets' => true, |
|
'heredoc_to_nowdoc' => true, |
|
'no_extra_consecutive_blank_lines' => array('break', 'continue', 'extra', 'return', 'throw', 'use', 'parenthesis_brace_block', 'square_brace_block', 'curly_brace_block'), |
|
'no_unreachable_default_argument_value' => true, |
|
'no_useless_else' => true, |
|
'no_useless_return' => true, |
|
'ordered_class_elements' => true, |
|
'ordered_imports' => true, |
|
'php_unit_strict' => false, |
|
'phpdoc_order' => true, |
|
// 'psr4' => true, |
|
'strict_comparison' => true, |
|
'strict_param' => true, |
|
'concat_space' => array('spacing' => 'one'), |
|
]) |
|
->setFinder( |
|
PhpCsFixer\Finder::create() |
|
->exclude(array('vendor')) |
|
->in(__DIR__) |
|
) |
|
;
|
|
|