-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
.editorconfig
69 lines (63 loc) · 2.24 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
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
trim_trailing_whitespace = true
[*.scala]
indent_size = 2
[*.java]
indent_size = 2
max_line_length = 120
ij_java_space_within_empty_method_parentheses = false
ij_java_blank_lines_before_method_body = 0
ij_java_keep_blank_lines_before_right_brace = 0
ij_java_space_before_annotation_array_initializer_left_brace = false
ij_java_space_before_array_initializer_left_brace = true
ij_java_layout_static_imports_separately = true
ij_java_insert_inner_class_imports = false
ij_java_use_single_class_imports = true
ij_java_continuation_indent_size = 4
ij_java_use_relative_indents = false
ij_java_keep_indents_on_empty_lines = false
ij_java_indent_case_from_switch = true
ij_java_do_not_indent_top_level_class_members = false
ij_java_keep_builder_methods_indents = true
ij_java_line_comment_add_space = true
ij_java_space_after_type_cast = true
ij_java_align_types_in_multi_catch = true
ij_java_space_after_comma_in_type_arguments = true
ij_java_blank_lines_around_method_in_interface = 1
ij_java_method_parameters_wrap = normal
ij_java_keep_simple_lambdas_in_one_line = true
ij_java_replace_sum_lambda_with_method_ref = true
ij_java_spaces_around_lambda_arrow = true
ij_java_method_brace_style = end_of_line
ij_java_align_group_field_declarations = false
ij_java_imports_layout = $*,|,*
[*.yaml]
indent_size = 2
[*.xml]
indent_size = 2
# Tab indentation (no size specified)
[Makefile]
indent_style = tab