forked from DataDog/dd-trace-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
60 lines (47 loc) · 1.86 KB
/
.editorconfig
File metadata and controls
60 lines (47 loc) · 1.86 KB
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
; top-most EditorConfig file
root = true
[*]
charset=utf-8
end_of_line=lf
insert_final_newline=true
indent_style=space
indent_size=2
ij_continuation_indent_size=4
[*.java]
ij_java_class_count_to_use_import_on_demand = 99
ij_java_insert_inner_class_imports = false
ij_java_imports_layout = |,$*,|,*,|
ij_java_layout_on_demand_import_from_same_package_first = true
ij_java_layout_static_imports_separately = true
ij_java_names_count_to_use_import_on_demand = 99
ij_java_packages_to_use_import_on_demand = java.awt.*,javax.swing.*
ij_java_block_comment_add_space = false
ij_java_block_comment_at_first_column = false
ij_java_line_comment_add_space = true
ij_java_line_comment_add_space_on_reformat = false
ij_java_line_comment_at_first_column = false
[{*.groovy,*.gradle}]
ij_groovy_class_count_to_use_import_on_demand = 99
ij_groovy_imports_layout = $*,|,*,|
ij_groovy_names_count_to_use_import_on_demand = 99
ij_groovy_packages_to_use_import_on_demand = java.awt.*,javax.swing.*
ij_groovy_block_comment_add_space = false
ij_groovy_block_comment_at_first_column = false
ij_groovy_line_comment_add_space = true
ij_groovy_line_comment_add_space_on_reformat = false
ij_groovy_line_comment_at_first_column = false
[{*.kt,*.kts}]
ij_kotlin_import_nested_classes = false
ij_kotlin_imports_layout = *,java.**,javax.**,kotlin.**,^
ij_kotlin_name_count_to_use_star_import = 99
ij_kotlin_name_count_to_use_star_import_for_members = 99
ij_kotlin_packages_to_use_import_on_demand = kotlinx.android.synthetic.**,io.ktor.**
ij_kotlin_block_comment_add_space = false
ij_kotlin_block_comment_at_first_column = false
ij_kotlin_line_comment_add_space = true
ij_kotlin_line_comment_add_space_on_reformat = false
ij_kotlin_line_comment_at_first_column = false
[{*.yml,*.yaml}]
ij_yaml_line_comment_add_space = true
ij_yaml_line_comment_add_space_on_reformat = false
ij_yaml_line_comment_at_first_column = false