-
Notifications
You must be signed in to change notification settings - Fork 7
/
.editorconfig
113 lines (85 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 120
tab_width = 2
trim_trailing_whitespace = true
[*.expected]
insert_final_newline = false
max_line_length = unset
[*.expected*]
max_line_length = unset
[*.md]
indent_size = unset
# See, and must match, the .markdownlint.yaml MD013: line_length
max_line_length = unset
[*.textproto]
indent_size = unset
tab_width = unset
[*.bash]
max_line_length = unset
[*.html]
indent_size = unset
tab_width = unset
[*.java]
tab_width = 4
indent_size = 4
max_line_length = unset
indent_size = unset
[*.json]
max_line_length = unset
max_line_length = unset
[*.jsonc]
max_line_length = unset
[*.jsonld]
max_line_length = unset
[*.json5]
max_line_length = unset
[*.ttl]
indent_size = unset
tab_width = unset
max_line_length = unset
[*.ttls]
max_line_length = 140
[*.gv]
max_line_length = unset
[LICENSE]
indent_size = unset
[LICENSE-header.txt]
# https://github.com/Lucas-C/pre-commit-hooks/issues/70
insert_final_newline = false
# Generated Code is ignored
# Keep in sync with .prettierignore
[maven_install.json]
generated_code = true
indent_size = unset
max_line_length = unset
[MODULE.bazel.lock]
generated_code = true
indent_size = unset
max_line_length = unset
[*.owl]
max_line_length = unset
[test-random-binary]
insert_final_newline = false
[script.output]
indent_size = unset
max_line_length = unset
[mkdocs.yaml]
max_line_length = unset
[WORKSPACE.bazel]
max_line_length = unset
[ci.yaml]
max_line_length = unset
[CITATION.cff]
indent_size = unset
max_line_length = unset
[Dockerfile]
max_line_length = unset
# Note that https://github.com/editorconfig-checker/editorconfig-checker
# which https://github.com/editorconfig-checker/editorconfig-checker.python
# uses does not understand e.g. [{*.yaml,*.yml}] but only single ones.