-
Notifications
You must be signed in to change notification settings - Fork 2
/
.editorconfig
53 lines (42 loc) · 930 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
# SPDX-FileCopyrightText: 2020-2023 Jochem Rutgers
#
# SPDX-License-Identifier: CC0-1.0
root = true
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_size = 8
indent_style = tab
trim_trailing_whitespace = true
[*.{h,c,cpp,h.tmpl,c.tmpl,cpp.tmpl,cmake,cmake.in,cmake.tmpl}]
max_line_length = 100
[CMakeLists.txt]
max_line_length = 100
[*.{py,qml}]
indent_style = space
indent_size = 4
[*.{yml,clang-tidy,cmake-format}]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false
charset = utf-8-bom
[*.diff]
trim_trailing_whitespace = false
end_of_line = unset
[*.rst]
indent_style = space
indent_size = 3
charset = utf-8-bom
trim_trailing_whitespace = false
[*.cmd]
end_of_line = crlf
[{extern/*/**,dist/*/build/**}]
end_of_line = unset
insert_final_newline = unset
charset = unset
indent_size = unset
indent_style = unset
trim_trailing_whitespace = unset
max_line_length = unset