-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
55 lines (41 loc) · 850 Bytes
/
.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
54
55
root=true
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_size = 2
[*.java]
indent_style = tab
indent_size = 4
continuation_indent_size = 8
[*.xml]
indent_style = tab
indent_size = 4
continuation_indent_size = 8
[latin1.example.txt | latin1-germanUmlauts.example.txt]
charset = latin1
[utf16be.example.txt | utf16beLFs.txt]
charset = utf-16be
[utf16le.example.txt | utf16leLFs.txt]
charset = utf-16le
[utf8bom.example.txt]
charset = utf-8-bom
[asciiCRLFs.txt]
end_of_line = crlf
[utf16beCRLFs.txt]
charset = utf-16be
end_of_line = crlf
[utf16leCRLFs.txt]
charset = utf-16le
end_of_line = crlf
[asciiCRs.txt]
end_of_line = cr
[utf16beCRs.txt]
charset = utf-16be
end_of_line = cr
[utf16leCRs.txt]
charset = utf-16le
end_of_line = cr
[empty.example.txt]
insert_final_newline = false