Configure cs-fixer to keep existing style
This commit is contained in:
parent
84e4b601da
commit
e2f0c95707
1 changed files with 5 additions and 1 deletions
|
@ -8,12 +8,16 @@ $config->setRules([
|
|||
'@PSR2' => true,
|
||||
'@Symfony' => true,
|
||||
'binary_operator_spaces' => [],
|
||||
'braces' => ['position_after_functions_and_oop_constructs' => 'same'],
|
||||
'braces_position' => [
|
||||
'functions_opening_brace' => 'same_line',
|
||||
'classes_opening_brace' => 'same_line'],
|
||||
'concat_space' => ['spacing' => 'one'],
|
||||
'fully_qualified_strict_types' => false,
|
||||
'no_superfluous_phpdoc_tags' => false,
|
||||
'no_unneeded_control_parentheses' => false,
|
||||
'phpdoc_align' => false,
|
||||
'single_line_comment_style' => false,
|
||||
'single_line_comment_spacing' => false,
|
||||
'single_quote' => false,
|
||||
'trailing_comma_in_multiline' => true,
|
||||
'visibility_required' => false,
|
||||
|
|
Loading…
Reference in a new issue