-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.editorconfig
57 lines (45 loc) · 961 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
56
57
# SPDX-FileCopyrightText: 2023-2024 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
[*.{c,cpp,h}]
charset = utf-8-bom
max_line_length = 100
[*.cmake]
max_line_length = 100
[CMakeLists.txt]
max_line_length = 100
[*.{py,qml}]
indent_style = space
indent_size = 4
[*.{yml,yaml,clang-tidy,clang-format,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,rst.in}]
trim_trailing_whitespace = false
indent_style = space
indent_size = 3
charset = utf-8-bom
[*.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