-
Notifications
You must be signed in to change notification settings - Fork 3
/
.editorconfig
53 lines (42 loc) · 1.01 KB
/
.editorconfig
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
53
# EditorConfig configuration for this repository -- https://EditorConfig.org
# Top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file, utf-8 charset
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
# Ignore diffs/patches
[*.{diff,patch}]
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
# Prefer space-indent for..
[*.{json,lock,md,pl,pm,py,rb,xml}]
indent_style = space
# Prefer tab-indent for..
[*.{nix,sh,bash}]
indent_style = tab
[*.{json,lock,md,nix,rb,sh}]
indent_size = 2
[*.lock]
indent_size = unset
[*.md]
trim_trailing_whitespace = true
# binaries
[*.nib]
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
charset = unset
[eggs.nix]
trim_trailing_whitespace = unset
# You can add file-specific configuration using:
#
# [path/to/file]
# end_of_line = unset
# indent_style = unset
# insert_final_newline = unset
# trim_trailing_whitespace = unset
# other config..