-
Jonathan Foucher authoredJonathan Foucher authored
.php-cs-fixer.dist.php 991 B
<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude(['bin', 'config', 'public', 'templates', 'translations', 'var', 'vendor'])
;
$config = new PhpCsFixer\Config();
return $config->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,
'align_multiline_comment' => true,
'binary_operator_spaces' =>
['operators' => [
'=>' => 'align_single_space_minimal',
'=' => 'align_single_space_minimal',
]]
,
'blank_line_before_statement' => ['statements' => ['return', 'throw']],
'concat_space' => ['spacing' => 'one'],
'no_extra_blank_lines' => ['tokens' => ['break', 'continue', 'extra', 'return', 'throw', 'use', 'parenthesis_brace_block', 'square_brace_block', 'curly_brace_block']],
'no_useless_else' => true,
'no_useless_return' => true,
'ordered_imports' => true,
'phpdoc_order' => true,
])
->setFinder($finder)
;