-
Notifications
You must be signed in to change notification settings - Fork 5
/
.php_cs
22 lines (20 loc) · 984 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
<?php
$finder = Symfony\CS\Finder\DefaultFinder::create()
->exclude('vendor')
->in(__DIR__)
;
return Symfony\CS\Config\Config::create()
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
->fixers([
'psr0', 'encoding', 'short_tag', 'duplicate_semicolon', 'empty_return',
'extra_empty_lines', 'include', 'join_function', 'multiline_array_trailing_comma',
'namespace_no_leading_whitespace', 'no_blank_lines_after_class_opening',
'no_empty_lines_after_phpdocs', 'object_operator', 'operators_spaces',
'phpdoc_indent', 'phpdoc_params', 'remove_leading_slash_use', 'remove_lines_between_uses',
'return', 'single_array_no_trailing_comma', 'spaces_before_semicolon',
'spaces_cast', 'standardize_not_equal', 'ternary_spaces', 'unused_use',
'whitespacy_lines', 'align_double_arrow', 'concat_with_spaces',
'no_blank_lines_before_namespace', 'ordered_use', 'short_array_syntax',
])
->finder($finder)
;