-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
257 lines (242 loc) · 9.78 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
#################
# Common Settings
#################
# This file is the top-most EditorConfig file
root = true
# All Files
[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
max_line_length = 140
insert_final_newline = true
trim_trailing_whitespace = true
#########################
# File Extension Settings
#########################
# Various XML/json Configuration Files
[*.{xml,json,json5,yml,yaml,ruleset}]
max_line_length = off
# Markdown Files
[*.md]
trim_trailing_whitespace = false
[*.properties]
trim_trailing_whitespace = false
max_line_length = off
# Web Files
[*.{htm,html,js,ts,tsx,css,sass,scss,less,svg,vue,coffee,stylintrc}]
indent_size = 2
# java
[*.java]
indent_style = space
indent_size = 4
continuation_indent_size = 4
ij_java_line_comment_at_first_column = false
# groovy
[*.{gsp,jsp,kt,kts}]
indent_style = space
indent_size = 4
continuation_indent_size = 4
# groovy
[{*.gant,*.gradle,*.groovy,*.gson,*.gy}]
indent_style = space
indent_size = 4
continuation_indent_size = 4
ij_groovy_line_comment_add_space = true
ij_groovy_line_comment_at_first_column = false
ij_groovy_block_comment_at_first_column = false
ij_groovy_space_after_comma = true
ij_groovy_align_group_field_declarations = false
ij_groovy_align_multiline_list_or_map = true
# ij_groovy_align_group_field_declarations = false
# ij_groovy_align_multiline_array_initializer_expression = false
# ij_groovy_align_multiline_assignment = false
# ij_groovy_align_multiline_binary_operation = false
# ij_groovy_align_multiline_chained_methods = false
# ij_groovy_align_multiline_extends_list = false
# ij_groovy_align_multiline_for = true
# ij_groovy_align_multiline_list_or_map = true
# ij_groovy_align_multiline_method_parentheses = false
# ij_groovy_align_multiline_parameters = true
# ij_groovy_align_multiline_parameters_in_calls = false
# ij_groovy_align_multiline_resources = true
# ij_groovy_align_multiline_ternary_operation = false
# ij_groovy_align_multiline_throws_list = false
# ij_groovy_align_named_args_in_map = true
# ij_groovy_align_throws_keyword = false
# ij_groovy_array_initializer_new_line_after_left_brace = false
# ij_groovy_array_initializer_right_brace_on_new_line = false
# ij_groovy_array_initializer_wrap = off
# ij_groovy_assert_statement_wrap = off
# ij_groovy_assignment_wrap = off
# ij_groovy_binary_operation_wrap = off
# ij_groovy_blank_lines_after_class_header = 0
# ij_groovy_blank_lines_after_imports = 1
# ij_groovy_blank_lines_after_package = 1
# ij_groovy_blank_lines_around_class = 1
# ij_groovy_blank_lines_around_field = 0
# ij_groovy_blank_lines_around_field_in_interface = 0
# ij_groovy_blank_lines_around_method = 1
# ij_groovy_blank_lines_around_method_in_interface = 1
# ij_groovy_blank_lines_before_imports = 1
# ij_groovy_blank_lines_before_method_body = 0
# ij_groovy_blank_lines_before_package = 0
# ij_groovy_block_brace_style = end_of_line
# ij_groovy_block_comment_at_first_column = false
# ij_groovy_call_parameters_new_line_after_left_paren = false
# ij_groovy_call_parameters_right_paren_on_new_line = false
# ij_groovy_call_parameters_wrap = off
# ij_groovy_catch_on_new_line = false
# ij_groovy_class_annotation_wrap = split_into_lines
# ij_groovy_class_brace_style = end_of_line
# ij_groovy_class_count_to_use_import_on_demand = 50
# ij_groovy_do_while_brace_force = never
# ij_groovy_else_on_new_line = false
# ij_groovy_enum_constants_wrap = off
# ij_groovy_extends_keyword_wrap = off
# ij_groovy_extends_list_wrap = off
# ij_groovy_field_annotation_wrap = split_into_lines
# ij_groovy_finally_on_new_line = false
# ij_groovy_for_brace_force = never
# ij_groovy_for_statement_new_line_after_left_paren = false
# ij_groovy_for_statement_right_paren_on_new_line = false
# ij_groovy_for_statement_wrap = off
# ij_groovy_if_brace_force = never
# ij_groovy_import_annotation_wrap = 2
# ij_groovy_imports_layout = java.**,javax.**,|,groovy.**,|,org.**,|,*,|,$*
# ij_groovy_indent_case_from_switch = true
# ij_groovy_indent_label_blocks = true
# ij_groovy_insert_inner_class_imports = false
# ij_groovy_keep_blank_lines_before_right_brace = 2
# ij_groovy_keep_blank_lines_in_code = 2
# ij_groovy_keep_blank_lines_in_declarations = 2
# ij_groovy_keep_control_statement_in_one_line = true
# ij_groovy_keep_first_column_comment = false
# ij_groovy_keep_indents_on_empty_lines = false
# ij_groovy_keep_line_breaks = true
# ij_groovy_keep_multiple_expressions_in_one_line = false
# ij_groovy_keep_simple_blocks_in_one_line = false
# ij_groovy_keep_simple_classes_in_one_line = true
# ij_groovy_keep_simple_lambdas_in_one_line = true
# ij_groovy_keep_simple_methods_in_one_line = true
# ij_groovy_label_indent_absolute = false
# ij_groovy_label_indent_size = 0
# ij_groovy_lambda_brace_style = end_of_line
# ij_groovy_layout_static_imports_separately = true
# ij_groovy_line_comment_add_space = true
# ij_groovy_line_comment_at_first_column = false
# ij_groovy_method_annotation_wrap = split_into_lines
# ij_groovy_method_brace_style = end_of_line
# ij_groovy_method_call_chain_wrap = off
# ij_groovy_method_parameters_new_line_after_left_paren = false
# ij_groovy_method_parameters_right_paren_on_new_line = false
# ij_groovy_method_parameters_wrap = off
# ij_groovy_modifier_list_wrap = false
# ij_groovy_names_count_to_use_import_on_demand = 50
# ij_groovy_parameter_annotation_wrap = off
# ij_groovy_parentheses_expression_new_line_after_left_paren = false
# ij_groovy_parentheses_expression_right_paren_on_new_line = false
# ij_groovy_prefer_parameters_wrap = false
# ij_groovy_resource_list_new_line_after_left_paren = false
# ij_groovy_resource_list_right_paren_on_new_line = false
# ij_groovy_resource_list_wrap = off
# ij_groovy_space_after_assert_separator = true
# ij_groovy_space_after_colon = true
# ij_groovy_space_after_comma = true
# ij_groovy_space_after_comma_in_type_arguments = true
# ij_groovy_space_after_for_semicolon = true
# ij_groovy_space_after_quest = true
# ij_groovy_space_after_type_cast = true
# ij_groovy_space_before_annotation_parameter_list = false
# ij_groovy_space_before_array_initializer_left_brace = false
# ij_groovy_space_before_assert_separator = false
# ij_groovy_space_before_catch_keyword = true
# ij_groovy_space_before_catch_left_brace = true
# ij_groovy_space_before_catch_parentheses = true
# ij_groovy_space_before_class_left_brace = true
# ij_groovy_space_before_closure_left_brace = true
# ij_groovy_space_before_colon = true
# ij_groovy_space_before_comma = false
# ij_groovy_space_before_do_left_brace = true
# ij_groovy_space_before_else_keyword = true
# ij_groovy_space_before_else_left_brace = true
# ij_groovy_space_before_finally_keyword = true
# ij_groovy_space_before_finally_left_brace = true
# ij_groovy_space_before_for_left_brace = true
# ij_groovy_space_before_for_parentheses = true
# ij_groovy_space_before_for_semicolon = false
ij_groovy_space_before_if_left_brace = true
ij_groovy_space_before_if_parentheses = true
# ij_groovy_space_before_method_call_parentheses = false
# ij_groovy_space_before_method_left_brace = true
# ij_groovy_space_before_method_parentheses = false
# ij_groovy_space_before_quest = true
# ij_groovy_space_before_switch_left_brace = true
# ij_groovy_space_before_switch_parentheses = true
# ij_groovy_space_before_synchronized_left_brace = true
# ij_groovy_space_before_synchronized_parentheses = true
# ij_groovy_space_before_try_left_brace = true
# ij_groovy_space_before_try_parentheses = true
# ij_groovy_space_before_while_keyword = true
# ij_groovy_space_before_while_left_brace = true
# ij_groovy_space_before_while_parentheses = true
# ij_groovy_space_in_named_argument = true
# ij_groovy_space_in_named_argument_before_colon = false
# ij_groovy_space_within_empty_array_initializer_braces = false
# ij_groovy_space_within_empty_method_call_parentheses = false
# ij_groovy_spaces_around_additive_operators = true
# ij_groovy_spaces_around_assignment_operators = true
# ij_groovy_spaces_around_bitwise_operators = true
# ij_groovy_spaces_around_equality_operators = true
# ij_groovy_spaces_around_lambda_arrow = true
# ij_groovy_spaces_around_logical_operators = true
# ij_groovy_spaces_around_multiplicative_operators = true
# ij_groovy_spaces_around_regex_operators = true
# ij_groovy_spaces_around_relational_operators = true
# ij_groovy_spaces_around_shift_operators = true
# ij_groovy_spaces_within_annotation_parentheses = false
# ij_groovy_spaces_within_array_initializer_braces = false
# ij_groovy_spaces_within_braces = true
# ij_groovy_spaces_within_brackets = false
# ij_groovy_spaces_within_cast_parentheses = false
# ij_groovy_spaces_within_catch_parentheses = false
# ij_groovy_spaces_within_for_parentheses = false
# ij_groovy_spaces_within_gstring_injection_braces = false
# ij_groovy_spaces_within_if_parentheses = false
# ij_groovy_spaces_within_list_or_map = false
# ij_groovy_spaces_within_method_call_parentheses = false
# ij_groovy_spaces_within_method_parentheses = false
# ij_groovy_spaces_within_parentheses = false
# ij_groovy_spaces_within_switch_parentheses = false
# ij_groovy_spaces_within_synchronized_parentheses = false
# ij_groovy_spaces_within_try_parentheses = false
# ij_groovy_spaces_within_tuple_expression = false
# ij_groovy_spaces_within_while_parentheses = false
# ij_groovy_special_else_if_treatment = true
# ij_groovy_ternary_operation_wrap = off
# ij_groovy_throws_keyword_wrap = off
# ij_groovy_throws_list_wrap = off
# ij_groovy_use_flying_geese_braces = false
# ij_groovy_use_fq_class_names = false
# ij_groovy_use_fq_class_names_in_javadoc = true
# ij_groovy_use_relative_indents = false
# ij_groovy_use_single_class_imports = true
# ij_groovy_variable_annotation_wrap = off
# ij_groovy_while_brace_force = never
# ij_groovy_while_on_new_line = false
# ij_groovy_wrap_long_lines = false
[*.gradle]
indent_size = 2
# python
[*.py]
indent_style = space
indent_size = 4
[*.make]
indent_style = tab
indent_size = 4
[Makefile]
indent_style = tab
indent_size = 4
[README.md]
max_line_length = 80