X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.php_cs;fp=.php_cs;h=8bc79a956e8f70150b3fe8ed7d71f41ce9eb813b;hb=f808b01692a835673f328d7221ba8c212caa9b61;hp=0000000000000000000000000000000000000000;hpb=822c877949aff8ae57677671115f8f4fc69588d5;p=github%2Fwallabag%2Fwallabag.git diff --git a/.php_cs b/.php_cs new file mode 100644 index 00000000..8bc79a95 --- /dev/null +++ b/.php_cs @@ -0,0 +1,47 @@ +setRiskyAllowed(true) + ->setRules([ + '@Symfony' => true, + '@Symfony:risky' => true, + 'array_syntax' => [ + 'syntax' => 'short' + ], + 'combine_consecutive_unsets' => true, + 'heredoc_to_nowdoc' => true, + 'no_extra_consecutive_blank_lines' => [ + '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' => true, + 'phpdoc_order' => true, + // 'psr4' => true, + 'strict_comparison' => true, + 'strict_param' => true, + 'concat_space' => [ + 'spacing' => 'one' + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude([ + 'vendor', + 'var', + 'web' + ]) + ->in(__DIR__) + ) +;