-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy path.editorconfig
More file actions
52 lines (39 loc) · 831 Bytes
/
.editorconfig
File metadata and controls
52 lines (39 loc) · 831 Bytes
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
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
max_line_length = 120
trim_trailing_whitespace = true
[*.{json,table,toml,yml}]
indent_size = 2
indent_style = space
[deny.toml]
max_line_length = 140 # no multiline inline tables in toml
[butane_cli/src/main.rs]
max_line_length = 400
[butane_migrations.rs]
indent_size = unset
max_line_length = unset
[types.json]
max_line_length = unset
[README.md]
max_line_length = 200
[Makefile]
indent_style = tab
[notes.org]
indent_size = unset
indent_style = unset
[*.md]
indent_size = unset
[LICENSE-APACHE.txt]
indent_size = unset
indent_style = unset
[HELP.md]
max_line_length = 400
trim_trailing_whitespace = false
[*.stderr]
indent_size = unset
max_line_length = unset