-
Notifications
You must be signed in to change notification settings - Fork 1
/
.php-cs-fixer.dist.php
186 lines (140 loc) · 4.65 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?php
$finder = PhpCsFixer\Finder::create()
->files()
->in(__DIR__ . '/src')
->in(__DIR__ . '/test')
->in(__DIR__ . '/example')
->name('*.php')
->append([ __DIR__ . '/app' ]);
return (new PhpCsFixer\Config)
->setUsingCache(true)
->setIndent("\t")
->setLineEnding("\n")
//->setUsingLinter(false)
->setRiskyAllowed(true)
->setRules(
[
'@PHPUnit84Migration:risky' => true,
'php_unit_test_case_static_method_calls' => [
'call_type' => 'this',
],
'concat_space' => [
'spacing' => 'one',
],
'visibility_required' => [
'elements' => [ 'property', 'method' ],
],
'indentation_type' => true,
'no_useless_return' => true,
'switch_case_space' => true,
'switch_case_semicolon_to_colon' => true,
'array_syntax' => [ 'syntax' => 'short' ],
'list_syntax' => [ 'syntax' => 'short' ],
'no_leading_import_slash' => true,
'no_leading_namespace_whitespace' => true,
'array_indentation' => true,
'no_whitespace_in_blank_line' => true,
'no_trailing_whitespace' => true,
'phpdoc_add_missing_param_annotation' => [ 'only_untyped' => true, ],
'phpdoc_indent' => true,
'phpdoc_no_alias_tag' => true,
'phpdoc_no_package' => true,
'phpdoc_no_useless_inheritdoc' => true,
'phpdoc_order' => true,
'phpdoc_scalar' => true,
'phpdoc_single_line_var_spacing' => true,
'phpdoc_var_annotation_correct_order' => true,
'phpdoc_trim' => true,
'phpdoc_trim_consecutive_blank_line_separation' => true,
'phpdoc_types' => true,
'phpdoc_types_order' => [
'null_adjustment' => 'always_last',
'sort_algorithm' => 'alpha',
],
'phpdoc_align' => [
'align' => 'vertical',
'tags' => [ 'param' ],
],
'phpdoc_line_span' => [
'const' => 'single',
'method' => 'multi',
'property' => 'single',
],
'short_scalar_cast' => true,
'standardize_not_equals' => true,
'ternary_operator_spaces' => true,
'no_spaces_after_function_name' => true,
'no_unneeded_control_parentheses' => true,
'return_type_declaration' => [
'space_before' => 'one',
],
'single_line_after_imports' => true,
'single_blank_line_before_namespace' => true,
'single_line_comment_spacing' => true,
'blank_line_after_namespace' => true,
'single_blank_line_at_eof' => true,
'ternary_to_null_coalescing' => true,
'whitespace_after_comma_in_array' => true,
'cast_spaces' => [ 'space' => 'none' ],
'encoding' => true,
'space_after_semicolon' => [
'remove_in_empty_for_expressions' => true,
],
'align_multiline_comment' => [
'comment_type' => 'phpdocs_like',
],
'blank_line_before_statement' => [
'statements' => [ 'continue', 'try', 'switch', 'exit', 'throw', 'return', 'do' ],
],
'no_superfluous_phpdoc_tags' => [
'remove_inheritdoc' => true,
],
'no_superfluous_elseif' => true,
'no_useless_else' => true,
'compact_nullable_typehint' => true,
'combine_consecutive_issets' => true,
'escape_implicit_backslashes' => true,
'explicit_indirect_variable' => true,
'heredoc_to_nowdoc' => true,
'heredoc_indentation' => true,
'no_singleline_whitespace_before_semicolons' => true,
'no_null_property_initialization' => true,
'no_whitespace_before_comma_in_array' => true,
'no_empty_phpdoc' => true,
'no_empty_statement' => true,
'no_empty_comment' => true,
'no_extra_blank_lines' => true,
'no_blank_lines_after_phpdoc' => true,
'no_spaces_around_offset' => [
'positions' => [ 'outside' ],
],
'return_assignment' => true,
'lowercase_static_reference' => true,
'method_chaining_indentation' => true,
'method_argument_space' => [
'on_multiline' => 'ignore', // at least until they fix it
'keep_multiple_spaces_after_comma' => true,
],
'multiline_comment_opening_closing' => true,
'include' => true,
'elseif' => true,
'simple_to_complex_string_variable' => true,
'global_namespace_import' => [
'import_classes' => false,
'import_constants' => false,
'import_functions' => false,
],
'trailing_comma_in_multiline' => true,
'single_line_comment_style' => true,
'is_null' => true,
'yoda_style' => [
'equal' => false,
'identical' => false,
'less_and_greater' => null,
],
'empty_loop_condition' => [
'style' => 'for',
],
]
)
->setFinder($finder);