Skip to content

Commit

Permalink
exclude ordered_imports rule
Browse files Browse the repository at this point in the history
  • Loading branch information
Guite committed Aug 28, 2020
1 parent ca82ea9 commit 7c2f0c8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tool-config/php_cs_fixer.dist
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ return PhpCsFixer\Config::create()
'no_short_bool_cast' => true,
'no_whitespace_in_blank_line' => false, // due to generator
'nullable_type_declaration_for_default_null_value' => true,
'ordered_imports' => false, // due to generator
'phpdoc_align' => ['align' => 'left'],
'phpdoc_to_param_type' => true,
'phpdoc_to_return_type' => true,
'protected_to_private' => false,
'simplified_null_return' => true
'simplified_null_return' => true,
])
->setRiskyAllowed(true)
/*->setFinder(
Expand Down

0 comments on commit 7c2f0c8

Please sign in to comment.