mirror of
https://github.com/skylot/jadx.git
synced 2024-11-22 20:29:51 +00:00
33 lines
697 B
INI
33 lines
697 B
INI
# EditorConfig is awesome: https://EditorConfig.org
|
|
root = true
|
|
|
|
[*]
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
|
|
indent_style = tab
|
|
tab_width = 4
|
|
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.java]
|
|
ij_java_continuation_indent_size = 8
|
|
ij_java_use_single_class_imports = true
|
|
ij_java_class_count_to_use_import_on_demand = 99
|
|
ij_java_names_count_to_use_import_on_demand = 99
|
|
ij_java_packages_to_use_import_on_demand = *
|
|
|
|
[*.kt]
|
|
ij_kotlin_continuation_indent_size = 8
|
|
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 = *
|
|
|
|
[*.yml]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.bat]
|
|
end_of_line = crlf
|