Skip to content

Commit ab931ee

Browse files
committed
adds editorconfig
1 parent 4296af5 commit ab931ee

File tree

1 file changed

+257
-0
lines changed

1 file changed

+257
-0
lines changed

.editorconfig

+257
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,257 @@
1+
; top-most EditorConfig file
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 4
8+
indent_style = space
9+
insert_final_newline = true
10+
max_line_length = 120
11+
tab_width = 4
12+
trim_trailing_whitespace = true
13+
ij_continuation_indent_size = 8
14+
ij_formatter_off_tag = @formatter:off
15+
ij_formatter_on_tag = @formatter:on
16+
ij_formatter_tags_enabled = true
17+
ij_smart_tabs = false
18+
ij_wrap_on_typing = false
19+
20+
[*.{yml, yaml}]
21+
ij_continuation_indent_size = 2
22+
ij_yaml_keep_indents_on_empty_lines = false
23+
ij_yaml_keep_line_breaks = true
24+
25+
[.github/workflows/*.yml]
26+
indent_size = 2
27+
28+
[*.md]
29+
trim_trailing_whitespace = false
30+
31+
[.editorconfig]
32+
ij_editorconfig_align_group_field_declarations = false
33+
ij_editorconfig_space_after_colon = false
34+
ij_editorconfig_space_after_comma = true
35+
ij_editorconfig_space_before_colon = false
36+
ij_editorconfig_space_before_comma = false
37+
ij_editorconfig_spaces_around_assignment_operators = true
38+
39+
[*.php]
40+
ij_continuation_indent_size = 4
41+
ij_php_align_assignments = true
42+
ij_php_align_class_constants = true
43+
ij_php_align_group_field_declarations = true
44+
ij_php_align_inline_comments = false
45+
ij_php_align_key_value_pairs = true
46+
ij_php_align_multiline_array_initializer_expression = false
47+
ij_php_align_multiline_binary_operation = false
48+
ij_php_align_multiline_chained_methods = true
49+
ij_php_align_multiline_extends_list = true
50+
ij_php_align_multiline_for = true
51+
ij_php_align_multiline_parameters = false
52+
ij_php_align_multiline_parameters_in_calls = false
53+
ij_php_align_multiline_ternary_operation = false
54+
ij_php_align_phpdoc_comments = true
55+
ij_php_align_phpdoc_param_names = true
56+
ij_php_api_weight = 28
57+
ij_php_array_initializer_new_line_after_left_brace = true
58+
ij_php_array_initializer_right_brace_on_new_line = true
59+
ij_php_array_initializer_wrap = on_every_item
60+
ij_php_assignment_wrap = off
61+
ij_php_author_weight = 28
62+
ij_php_binary_operation_sign_on_next_line = false
63+
ij_php_binary_operation_wrap = off
64+
ij_php_blank_lines_after_class_header = 0
65+
ij_php_blank_lines_after_function = 1
66+
ij_php_blank_lines_after_imports = 1
67+
ij_php_blank_lines_after_opening_tag = 0
68+
ij_php_blank_lines_after_package = 1
69+
ij_php_blank_lines_around_class = 1
70+
ij_php_blank_lines_around_constants = 0
71+
ij_php_blank_lines_around_field = 0
72+
ij_php_blank_lines_around_method = 1
73+
ij_php_blank_lines_before_class_end = 0
74+
ij_php_blank_lines_before_imports = 1
75+
ij_php_blank_lines_before_method_body = 0
76+
ij_php_blank_lines_before_package = 1
77+
ij_php_blank_lines_before_return_statement = 0
78+
ij_php_block_brace_style = end_of_line
79+
ij_php_call_parameters_new_line_after_left_paren = true
80+
ij_php_call_parameters_right_paren_on_new_line = true
81+
ij_php_call_parameters_wrap = on_every_item
82+
ij_php_catch_on_new_line = false
83+
ij_php_category_weight = 28
84+
ij_php_class_brace_style = next_line
85+
ij_php_comma_after_last_array_element = true
86+
ij_php_concat_spaces = true
87+
ij_php_copyright_weight = 28
88+
ij_php_deprecated_weight = 28
89+
ij_php_do_while_brace_force = always
90+
ij_php_else_if_style = combine
91+
ij_php_else_on_new_line = false
92+
ij_php_example_weight = 28
93+
ij_php_extends_keyword_wrap = off
94+
ij_php_extends_list_wrap = normal
95+
ij_php_fields_default_visibility = private
96+
ij_php_filesource_weight = 28
97+
ij_php_finally_on_new_line = false
98+
ij_php_for_brace_force = always
99+
ij_php_for_statement_new_line_after_left_paren = false
100+
ij_php_for_statement_right_paren_on_new_line = false
101+
ij_php_for_statement_wrap = off
102+
ij_php_force_short_declaration_array_style = true
103+
ij_php_global_weight = 28
104+
ij_php_group_use_wrap = on_every_item
105+
ij_php_if_brace_force = always
106+
ij_php_if_lparen_on_next_line = false
107+
ij_php_if_rparen_on_next_line = false
108+
ij_php_ignore_weight = 28
109+
ij_php_import_sorting = alphabetic
110+
ij_php_indent_break_from_case = true
111+
ij_php_indent_case_from_switch = true
112+
ij_php_indent_code_in_php_tags = false
113+
ij_php_internal_weight = 28
114+
ij_php_keep_blank_lines_after_lbrace = 2
115+
ij_php_keep_blank_lines_before_right_brace = 2
116+
ij_php_keep_blank_lines_in_code = 2
117+
ij_php_keep_blank_lines_in_declarations = 2
118+
ij_php_keep_control_statement_in_one_line = true
119+
ij_php_keep_first_column_comment = true
120+
ij_php_keep_indents_on_empty_lines = false
121+
ij_php_keep_line_breaks = true
122+
ij_php_keep_rparen_and_lbrace_on_one_line = true
123+
ij_php_keep_simple_methods_in_one_line = false
124+
ij_php_lambda_brace_style = end_of_line
125+
ij_php_license_weight = 28
126+
ij_php_line_comment_add_space = false
127+
ij_php_line_comment_at_first_column = true
128+
ij_php_link_weight = 28
129+
ij_php_lower_case_boolean_const = true
130+
ij_php_lower_case_null_const = true
131+
ij_php_method_brace_style = next_line
132+
ij_php_method_call_chain_wrap = off
133+
ij_php_method_parameters_new_line_after_left_paren = true
134+
ij_php_method_parameters_right_paren_on_new_line = true
135+
ij_php_method_parameters_wrap = on_every_item
136+
ij_php_method_weight = 28
137+
ij_php_modifier_list_wrap = false
138+
ij_php_multiline_chained_calls_semicolon_on_new_line = false
139+
ij_php_namespace_brace_style = 1
140+
ij_php_null_type_position = in_the_end
141+
ij_php_package_weight = 28
142+
ij_php_param_weight = 0
143+
ij_php_parentheses_expression_new_line_after_left_paren = false
144+
ij_php_parentheses_expression_right_paren_on_new_line = false
145+
ij_php_phpdoc_blank_line_before_tags = true
146+
ij_php_phpdoc_blank_lines_around_parameters = false
147+
ij_php_phpdoc_keep_blank_lines = true
148+
ij_php_phpdoc_param_spaces_between_name_and_description = 1
149+
ij_php_phpdoc_param_spaces_between_tag_and_type = 1
150+
ij_php_phpdoc_param_spaces_between_type_and_name = 1
151+
ij_php_phpdoc_use_fqcn = false
152+
ij_php_phpdoc_wrap_long_lines = true
153+
ij_php_place_assignment_sign_on_next_line = false
154+
ij_php_place_parens_for_constructor = 0
155+
ij_php_property_read_weight = 28
156+
ij_php_property_weight = 28
157+
ij_php_property_write_weight = 28
158+
ij_php_return_type_on_new_line = false
159+
ij_php_return_weight = 1
160+
ij_php_see_weight = 28
161+
ij_php_since_weight = 28
162+
ij_php_sort_phpdoc_elements = true
163+
ij_php_space_after_colon = true
164+
ij_php_space_after_colon_in_return_type = true
165+
ij_php_space_after_comma = true
166+
ij_php_space_after_for_semicolon = true
167+
ij_php_space_after_quest = true
168+
ij_php_space_after_type_cast = false
169+
ij_php_space_after_unary_not = false
170+
ij_php_space_before_array_initializer_left_brace = false
171+
ij_php_space_before_catch_keyword = true
172+
ij_php_space_before_catch_left_brace = true
173+
ij_php_space_before_catch_parentheses = true
174+
ij_php_space_before_class_left_brace = true
175+
ij_php_space_before_closure_left_parenthesis = true
176+
ij_php_space_before_colon = true
177+
ij_php_space_before_colon_in_return_type = false
178+
ij_php_space_before_comma = false
179+
ij_php_space_before_do_left_brace = true
180+
ij_php_space_before_else_keyword = true
181+
ij_php_space_before_else_left_brace = true
182+
ij_php_space_before_finally_keyword = true
183+
ij_php_space_before_finally_left_brace = true
184+
ij_php_space_before_for_left_brace = true
185+
ij_php_space_before_for_parentheses = true
186+
ij_php_space_before_for_semicolon = false
187+
ij_php_space_before_if_left_brace = true
188+
ij_php_space_before_if_parentheses = true
189+
ij_php_space_before_method_call_parentheses = false
190+
ij_php_space_before_method_left_brace = true
191+
ij_php_space_before_method_parentheses = false
192+
ij_php_space_before_quest = true
193+
ij_php_space_before_switch_left_brace = true
194+
ij_php_space_before_switch_parentheses = true
195+
ij_php_space_before_try_left_brace = true
196+
ij_php_space_before_unary_not = false
197+
ij_php_space_before_while_keyword = true
198+
ij_php_space_before_while_left_brace = true
199+
ij_php_space_before_while_parentheses = true
200+
ij_php_space_between_ternary_quest_and_colon = false
201+
ij_php_spaces_around_additive_operators = true
202+
ij_php_spaces_around_arrow = false
203+
ij_php_spaces_around_assignment_in_declare = false
204+
ij_php_spaces_around_assignment_operators = true
205+
ij_php_spaces_around_bitwise_operators = true
206+
ij_php_spaces_around_equality_operators = true
207+
ij_php_spaces_around_logical_operators = true
208+
ij_php_spaces_around_multiplicative_operators = true
209+
ij_php_spaces_around_null_coalesce_operator = true
210+
ij_php_spaces_around_relational_operators = true
211+
ij_php_spaces_around_shift_operators = true
212+
ij_php_spaces_around_unary_operator = false
213+
ij_php_spaces_around_var_within_brackets = false
214+
ij_php_spaces_within_array_initializer_braces = false
215+
ij_php_spaces_within_brackets = false
216+
ij_php_spaces_within_catch_parentheses = false
217+
ij_php_spaces_within_for_parentheses = false
218+
ij_php_spaces_within_if_parentheses = false
219+
ij_php_spaces_within_method_call_parentheses = false
220+
ij_php_spaces_within_method_parentheses = false
221+
ij_php_spaces_within_parentheses = false
222+
ij_php_spaces_within_short_echo_tags = true
223+
ij_php_spaces_within_switch_parentheses = false
224+
ij_php_spaces_within_while_parentheses = false
225+
ij_php_special_else_if_treatment = false
226+
ij_php_subpackage_weight = 28
227+
ij_php_ternary_operation_signs_on_next_line = false
228+
ij_php_ternary_operation_wrap = off
229+
ij_php_throws_weight = 2
230+
ij_php_todo_weight = 28
231+
ij_php_unknown_tag_weight = 28
232+
ij_php_upper_case_boolean_const = false
233+
ij_php_upper_case_null_const = false
234+
ij_php_uses_weight = 28
235+
ij_php_var_weight = 28
236+
ij_php_variable_naming_style = camel_case
237+
ij_php_version_weight = 28
238+
ij_php_while_brace_force = always
239+
ij_php_while_on_new_line = false
240+
241+
[composer.lock]
242+
ij_json_keep_blank_lines_in_code = 0
243+
ij_json_keep_indents_on_empty_lines = false
244+
ij_json_keep_line_breaks = true
245+
ij_json_space_after_colon = true
246+
ij_json_space_after_comma = true
247+
ij_json_space_before_colon = true
248+
ij_json_space_before_comma = false
249+
ij_json_spaces_within_braces = false
250+
ij_json_spaces_within_brackets = false
251+
ij_json_wrap_long_lines = false
252+
253+
[{phpunit.xml.dist, *.xml}]
254+
ij_xml_block_comment_at_first_column = true
255+
ij_xml_keep_indents_on_empty_lines = false
256+
ij_xml_line_comment_at_first_column = true
257+

0 commit comments

Comments
 (0)