forked from uuf6429/rune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php_cs
29 lines (28 loc) · 810 Bytes
/
.php_cs
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
<?php
return Symfony\CS\Config\Config::create()
->level(Symfony\CS\FixerInterface::SYMFONY_LEVEL)
->fixers([
'array_element_no_space_before_comma',
'array_element_white_space_after_comma',
'blankline_after_open_tag',
'concat_with_spaces',
'lowercase_cast',
'multiline_array_trailing_comma',
'namespace_no_leading_whitespace',
'ordered_use',
'phpdoc_order',
'remove_leading_slash_use',
'remove_lines_between_uses',
'return',
'short_array_syntax',
'single_quote',
'standardize_not_equal',
'ternary_spaces',
'unused_use',
])
->finder(
Symfony\CS\Finder\DefaultFinder::create()
->exclude(['var', 'vendor'])
->in(__DIR__)
)
;