This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path.php_cs
62 lines (60 loc) · 1.75 KB
/
.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
use Symfony\CS;
return CS\Config\Config::create()
->level(CS\FixerInterface::PSR2_LEVEL)
->fixers([
'array_element_no_space_before_comma',
'array_element_white_space_after_comma',
'duplicate_semicolon',
'extra_empty_lines',
'function_typehint_space',
'include',
'join_function',
'list_commas',
'method_argument_default_value',
'multiline_array_trailing_comma',
'namespace_no_leading_whitespace',
'new_with_braces',
'no_blank_lines_after_class_opening',
'object_operator',
'operators_spaces',
'phpdoc_indent',
'phpdoc_inline_tag',
'phpdoc_no_access',
'phpdoc_no_empty_return',
'phpdoc_no_package',
'phpdoc_scalar',
'phpdoc_separation',
'phpdoc_short_description',
'phpdoc_type_to_var',
'phpdoc_types',
'phpdoc_var_without_name',
'print_to_echo',
'remove_leading_slash_use',
'remove_lines_between_uses',
'return',
'short_bool_cast',
'single_array_no_trailing_comma',
'single_blank_line_before_namespace',
'single_quote',
'spaces_cast',
'standardize_not_equal',
'ternary_spaces',
'trim_array_spaces',
'unalign_double_arrow',
'unalign_equals',
'unary_operators_spaces',
'unneeded_control_parentheses',
'unused_use',
'whitespacy_lines',
'concat_with_spaces',
'newline_after_open_tag',
'ordered_use',
'phpdoc_order',
'short_array_syntax',
'strict_param',
])
->finder(
CS\Finder\DefaultFinder::create()
->in([__DIR__ . '/src', __DIR__ . '/tests'])
);