diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2017-07-03 13:39:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-03 13:39:54 +0200 |
commit | 71e1cbc8eb5928d393b0772055d6b711e90a09b3 (patch) | |
tree | 71795eadcf13fda9198b8cd9a3da26d51826bbd9 /.php_cs | |
parent | 822c877949aff8ae57677671115f8f4fc69588d5 (diff) | |
parent | 38520658addc217f127b0627ea28dcf8d6e6178c (diff) | |
download | wallabag-71e1cbc8eb5928d393b0772055d6b711e90a09b3.tar.gz wallabag-71e1cbc8eb5928d393b0772055d6b711e90a09b3.tar.zst wallabag-71e1cbc8eb5928d393b0772055d6b711e90a09b3.zip |
Merge pull request #3258 from wallabag/cs-fixer
Add a real configuration for CS-Fixer
Diffstat (limited to '.php_cs')
-rw-r--r-- | .php_cs | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/.php_cs b/.php_cs new file mode 100644 index 00000000..8bc79a95 --- /dev/null +++ b/.php_cs | |||
@@ -0,0 +1,47 @@ | |||
1 | <?php | ||
2 | |||
3 | return PhpCsFixer\Config::create() | ||
4 | ->setRiskyAllowed(true) | ||
5 | ->setRules([ | ||
6 | '@Symfony' => true, | ||
7 | '@Symfony:risky' => true, | ||
8 | 'array_syntax' => [ | ||
9 | 'syntax' => 'short' | ||
10 | ], | ||
11 | 'combine_consecutive_unsets' => true, | ||
12 | 'heredoc_to_nowdoc' => true, | ||
13 | 'no_extra_consecutive_blank_lines' => [ | ||
14 | 'break', | ||
15 | 'continue', | ||
16 | 'extra', | ||
17 | 'return', | ||
18 | 'throw', | ||
19 | 'use', | ||
20 | 'parenthesis_brace_block', | ||
21 | 'square_brace_block', | ||
22 | 'curly_brace_block' | ||
23 | ], | ||
24 | 'no_unreachable_default_argument_value' => true, | ||
25 | 'no_useless_else' => true, | ||
26 | 'no_useless_return' => true, | ||
27 | 'ordered_class_elements' => true, | ||
28 | 'ordered_imports' => true, | ||
29 | 'php_unit_strict' => true, | ||
30 | 'phpdoc_order' => true, | ||
31 | // 'psr4' => true, | ||
32 | 'strict_comparison' => true, | ||
33 | 'strict_param' => true, | ||
34 | 'concat_space' => [ | ||
35 | 'spacing' => 'one' | ||
36 | ], | ||
37 | ]) | ||
38 | ->setFinder( | ||
39 | PhpCsFixer\Finder::create() | ||
40 | ->exclude([ | ||
41 | 'vendor', | ||
42 | 'var', | ||
43 | 'web' | ||
44 | ]) | ||
45 | ->in(__DIR__) | ||
46 | ) | ||
47 | ; | ||