-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
340 lines (273 loc) · 10.6 KB
/
.editorconfig
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
root = true
[*]
charset = utf-8
end_of_line = lf
max_line_length = 120
# ij_formatter_off_tag = @formatter:off
# ij_formatter_on_tag = @formatter:on
# ij_formatter_tags_enabled = true
[*.{php,php.dist}]
insert_final_newline = true
# Tabs and Indents
indent_style = space
# ij_smart_tabs = false
tab_width = 4
indent_size = 4
ij_continuation_indent_size = 4
ij_php_keep_indents_on_empty_lines = false
ij_php_indent_code_in_php_tags = false
# Spaces - Before parentheses
ij_php_space_before_method_parentheses = false
ij_php_space_before_method_call_parentheses = false
ij_php_space_before_closure_left_parenthesis = true
ij_php_space_before_if_parentheses = true
ij_php_space_before_for_parentheses = true
ij_php_space_before_while_parentheses = true
ij_php_space_before_switch_parentheses = true
ij_php_space_before_catch_parentheses = true
ij_php_space_before_array_initializer_left_brace = false
ij_php_space_before_short_closure_left_parenthesis = false
# Spaces - Around operators
ij_php_spaces_around_assignment_operators = true
ij_php_spaces_around_logical_operators = true
ij_php_spaces_around_equality_operators = true
ij_php_spaces_around_relational_operators = true
ij_php_spaces_around_bitwise_operators = true
ij_php_spaces_around_additive_operators = true
ij_php_spaces_around_multiplicative_operators = true
ij_php_spaces_around_shift_operators = true
ij_php_spaces_around_unary_operator = false
ij_php_concat_spaces = true
ij_php_spaces_around_arrow = false
ij_php_spaces_around_null_coalesce_operator = true
ij_php_spaces_around_assignment_in_declare = false
# Spaces - Before left brace
ij_php_space_before_class_left_brace = true
ij_php_space_before_method_left_brace = true
ij_php_space_before_if_left_brace = true
ij_php_space_before_else_left_brace = true
ij_php_space_before_for_left_brace = true
ij_php_space_before_while_left_brace = true
ij_php_space_before_do_left_brace = true
ij_php_space_before_switch_left_brace = true
ij_php_space_before_try_left_brace = true
ij_php_space_before_catch_left_brace = true
ij_php_space_before_finally_left_brace = true
# Spaces - Before keywords
ij_php_space_before_else_keyword = true
ij_php_space_before_while_keyword = true
ij_php_space_before_catch_keyword = true
ij_php_space_before_finally_keyword = true
# Spaces - Within
ij_php_spaces_within_brackets = false
ij_php_spaces_around_var_within_brackets = false
ij_php_spaces_within_array_initializer_braces = false
ij_php_spaces_within_parentheses = false
ij_php_spaces_within_method_parentheses = false
ij_php_spaces_within_method_call_parentheses = false
ij_php_spaces_within_if_parentheses = false
ij_php_spaces_within_for_parentheses = false
ij_php_spaces_within_while_parentheses = false
ij_php_spaces_within_switch_parentheses = false
ij_php_spaces_within_catch_parentheses = false
ij_php_spaces_within_short_echo_tags = true
# Spaces - In ternary operator (?:)
ij_php_space_before_quest = true
ij_php_space_after_quest = true
ij_php_space_before_colon = true
ij_php_space_after_colon = true
ij_php_space_between_ternary_quest_and_colon = false
# Spaces - Other
ij_php_space_before_comma = false
ij_php_space_after_comma = true
ij_php_space_before_for_semicolon = false
ij_php_space_after_for_semicolon = true
ij_php_space_after_type_cast = true
ij_php_space_before_colon_in_return_type = false
ij_php_space_after_colon_in_return_type = true
ij_php_spaces_around_pipe_in_union_type = false
ij_php_space_before_colon_in_named_argument = false
ij_php_space_after_colon_in_named_argument = true
ij_php_space_before_colon_in_enum_backed_type = false
ij_php_space_after_colon_in_enum_backed_type = true
ij_php_space_before_unary_not = false
ij_php_space_after_unary_not = false
# Wrapping and Braces - Wrap on typing
ij_wrap_on_typing = false
# Wrapping and Braces - Visual guides
ij_visual_guides = 80,120
# Wrapping and Braces - Keep when reformatting
ij_php_keep_line_breaks = true
ij_php_keep_first_column_comment = true
ij_php_keep_control_statement_in_one_line = true
ij_php_keep_simple_methods_in_one_line = false
ij_php_keep_simple_classes_in_one_line = false
# Wrapping and Braces - Braces placement
ij_php_namespace_brace_style = 1
ij_php_class_brace_style = next_line
ij_php_anonymous_brace_style = end_of_line
ij_php_method_brace_style = next_line
ij_php_lambda_brace_style = end_of_line
ij_php_block_brace_style = end_of_line
# Wrapping and Braces - Extends/implements list
ij_php_extends_list_wrap = on_every_item
ij_php_align_multiline_extends_list = false
# Wrapping and Braces - Extends/implements keyword
ij_php_extends_keyword_wrap = off
# Wrapping and Braces - Function declaration parameters
ij_php_method_parameters_wrap = off
ij_php_align_multiline_parameters = false
ij_php_method_parameters_new_line_after_left_paren = true
ij_php_method_parameters_right_paren_on_new_line = true
ij_php_keep_rparen_and_lbrace_on_one_line = true
# Wrapping and Braces - Function/constructor call arguments
ij_php_call_parameters_wrap = off
ij_php_align_multiline_parameters_in_calls = false
ij_php_call_parameters_new_line_after_left_paren = false
ij_php_call_parameters_right_paren_on_new_line = false
ij_php_place_parens_for_constructor = 0
ij_php_align_named_arguments = false
# Wrapping and Braces - Chained method calls
ij_php_method_call_chain_wrap = off
ij_php_align_multiline_chained_methods = false
ij_php_multiline_chained_calls_semicolon_on_new_line = false
# Wrapping and Braces - 'if()' statement
ij_php_if_lparen_on_next_line = false
ij_php_if_rparen_on_next_line = false
ij_php_if_brace_force = always
ij_php_else_on_new_line = false
ij_php_special_else_if_treatment = false
# Wrapping and Braces - for()/foreach() statement
ij_php_for_statement_wrap = off
ij_php_align_multiline_for = false
ij_php_for_statement_new_line_after_left_paren = false
ij_php_for_statement_right_paren_on_new_line = false
ij_php_for_brace_force = always
# Wrapping and Braces - 'while()' statement
ij_php_while_brace_force = always
# Wrapping and Braces - 'do ... while()' statement
ij_php_do_while_brace_force = always
ij_php_while_on_new_line = false
# Wrapping and Braces - 'switch' statement
ij_php_indent_case_from_switch = true
ij_php_indent_break_from_case = true
# Wrapping and Braces - 'try' statement
ij_php_catch_on_new_line = false
ij_php_finally_on_new_line = false
# Wrapping and Braces - Binary expressions
ij_php_binary_operation_wrap = off
ij_php_align_multiline_binary_operation = false
ij_php_binary_operation_sign_on_next_line = false
ij_php_parentheses_expression_new_line_after_left_paren = false
ij_php_parentheses_expression_right_paren_on_new_line = false
# Wrapping and Braces - Assignment statement
ij_php_assignment_wrap = off
ij_php_place_assignment_sign_on_next_line = false
# ij_php_align_assignments = true
# Wrapping and Braces - Class property/constant groups
ij_php_align_group_field_declarations = false
ij_php_align_class_constants = true
# Wrapping and Braces - Ternary operation
ij_php_ternary_operation_wrap = on_every_item
ij_php_align_multiline_ternary_operation = false
ij_php_ternary_operation_signs_on_next_line = true
# Wrapping and Braces - Array initializer
ij_php_array_initializer_wrap = on_every_item
# ij_php_align_key_value_pairs = true
ij_php_align_multiline_array_initializer_expression = false
ij_php_array_initializer_new_line_after_left_brace = true
ij_php_array_initializer_right_brace_on_new_line = true
# Wrapping and Braces - Modifier list
ij_php_modifier_list_wrap = false
# Wrapping and Braces - Function return type
ij_php_return_type_on_new_line = false
# Wrapping and Braces - Comments
ij_php_align_inline_comments = false
# Wrapping and Braces - PHP opening tag
ij_php_new_line_after_php_opening_tag = false
# Wrapping and Braces - 'match' expression
ij_php_align_match_arm_bodies = false
# Wrapping and Braces - Group 'use'
ij_php_group_use_wrap = on_every_item
# Wrapping and Braces - Attributes
# ij_php_attributes_wrap = off
# Wrapping and Braces - Attributes for parameters
# ij_php_parameters_attributes_wrap = off
# Blank lines
ij_php_keep_blank_lines_in_declarations = 1
ij_php_keep_blank_lines_in_code = 2
ij_php_keep_blank_lines_after_lbrace = 0
ij_php_keep_blank_lines_before_right_brace = 0
ij_php_blank_lines_after_class_header = 0
ij_php_blank_lines_after_function = 1
ij_php_blank_lines_after_imports = 1
ij_php_blank_lines_after_opening_tag = 1
ij_php_blank_lines_after_package = 1
ij_php_blank_lines_around_class = 1
ij_php_blank_lines_around_constants = 0
ij_php_blank_lines_around_field = 1
ij_php_blank_lines_around_method = 1
ij_php_blank_lines_before_class_end = 0
ij_php_blank_lines_before_imports = 1
ij_php_blank_lines_before_method_body = 0
ij_php_blank_lines_before_package = 1
ij_php_blank_lines_before_return_statement = 1
ij_php_blank_lines_between_imports = 1
# PHPDoc
ij_php_phpdoc_keep_blank_lines = true
ij_php_phpdoc_blank_line_before_tags = true
ij_php_phpdoc_blank_lines_around_parameters = true
ij_php_phpdoc_wrap_long_lines = false
ij_php_align_phpdoc_param_names = false
ij_php_align_phpdoc_comments = false
ij_php_phpdoc_param_spaces_between_tag_and_type = 1
ij_php_phpdoc_param_spaces_between_type_and_name = 1
ij_php_phpdoc_param_spaces_between_name_and_description = 1
ij_php_phpdoc_use_fqcn = true
ij_php_null_type_position = in_the_end
# ij_php_sort_phpdoc_elements = true
# ij_php_api_weight = 28
# ij_php_author_weight = 28
# ij_php_category_weight = 28
# ij_php_copyright_weight = 28
# ij_php_deprecated_weight = 28
# ij_php_example_weight = 28
# ij_php_filesource_weight = 28
# ij_php_global_weight = 28
# ij_php_ignore_weight = 28
# ij_php_internal_weight = 28
# ij_php_license_weight = 28
# ij_php_link_weight = 28
# ij_php_method_weight = 28
# ij_php_package_weight = 28
# ij_php_param_weight = 0
# ij_php_property_read_weight = 28
# ij_php_property_weight = 28
# ij_php_property_write_weight = 28
# ij_php_return_weight = 1
# ij_php_see_weight = 28
# ij_php_since_weight = 28
# ij_php_subpackage_weight = 28
# ij_php_throws_weight = 2
# ij_php_todo_weight = 28
# ij_php_unknown_tag_weight = 28
# ij_php_uses_weight = 28
# ij_php_var_weight = 28
# ij_php_version_weight = 28
# Code Convension
ij_php_lower_case_boolean_const = true
ij_php_upper_case_boolean_const = false
ij_php_lower_case_null_const = true
ij_php_upper_case_null_const = false
ij_php_lower_case_keywords = true
ij_php_else_if_style = combine
ij_php_import_sorting = alphabetic
ij_php_force_short_declaration_array_style = true
ij_php_comma_after_last_array_element = true
# Code Generation
ij_php_variable_naming_style = camel_case
# ij_php_fields_default_visibility = private
# ij_php_getters_setters_order_style = getters_first
ij_php_getters_setters_naming_style = camel_case
# ij_php_line_comment_at_first_column = false
# ij_php_line_comment_add_space = true