-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
.php-cs-fixer.dist.php
40 lines (38 loc) · 1.1 KB
/
.php-cs-fixer.dist.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
$finder = PhpCsFixer\Finder::create()
->in('demo')
->in('src')
->in('test')
->in('tools')
->in('translator')
->exclude('lib_highlight')
->exclude('output')
;
$config = new PhpCsFixer\Config();
return $config
->setRules([
'@PSR1' => true,
'@PSR2' => true,
'@Symfony' => true,
'array_indentation' => true,
'array_syntax' => ['syntax' => 'long'],
'concat_space' => ['spacing' => 'one'],
'echo_tag_syntax' => ['format' => 'short'],
'no_alias_language_construct_call' => false,
'no_alternative_syntax' => false,
'no_useless_else' => true,
'no_useless_return' => true,
'phpdoc_align' => true,
'phpdoc_order' => true,
'phpdoc_trim_consecutive_blank_line_separation' => true,
'single_quote' => false,
'ternary_to_null_coalescing' => false,
'trailing_comma_in_multiline' => true,
'visibility_required' => false,
'yoda_style' => [
'equal' => false,
'identical' => false,
],
])
->setFinder($finder)
;