-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
23 lines (19 loc) · 609 Bytes
/
.editorconfig
File metadata and controls
23 lines (19 loc) · 609 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# EditorConfig configuration
# See: https://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 80
[*.rs]
indent_size = 4
max_line_length = 100
[/src/rust/dist/*.{ts,js}]
# Since git is tracking the generated type definitions file, we don't
# want to accidentally modify it on save.
# TODO: Also sort the types in the file for lower amount of modifications. Custom tool?
trim_trailing_whitespace = false