-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
19 lines (17 loc) · 916 Bytes
/
.editorconfig
File metadata and controls
19 lines (17 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
root = true
[*]
charset = utf-8 # UTF-8 with no BOM is typically standard.
end_of_line = lf # LF, always. Gives better portability.
indent_size = tab # Set number of columns to tab width.
indent_style = tab # Accessibility: https://adamtuttle.codes/blog/2021/tabs-vs-spaces-its-an-accessibility-issue/
insert_final_newline = true # Unix relic. Most IDEs do this anyway.
max_line_length = 120
tab_width = 4 # Set for continuation indent size. Users may override locally.
trim_trailing_whitespace = true # Gets rid of unnecessary indentation, and IJ ignores this anyway.
# IDE-specific Settings
# Note: Turn on Smart Tabs!
ij_java_continuation_indent_size = 8 # Should be twice the tab width (8 for 4 columns, 16 for 8)
ij_json_continuation_indent_size = 4 # Should be the tab size
ij_toml_continuation_indent_size = 4 # Should be the tab size
[*.key]
insert_final_newline = false # Don't do this for any publickeys.