blob: c3db1edce4bcd0e7a1a65b227e1d09a73a804141 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
root = true
[*]
charset = utf-8
indent_style = tab
end_of_line = lf
insert_final_newline = true
[*.java]
ij_java_imports_layout = com.mojang.**,net.fabricmc.**,net.minecraft.**,|,*,|,javax.**,java.**,|,$*
ij_java_layout_static_imports_separately = false
ij_java_class_count_to_use_import_on_demand = 1000
# This seems to be needed so that IDEA properly uses tabs in json files.
[*.json]
tab_width = 4
indent_size = 4
|