forked from nefelim4ag/Ananicy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
40 lines (32 loc) · 886 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
# Author: Peter J. Mello <admin@petermello.net>
# Version: 1.1.0 (Using <https://semver.org/>)
# Updated: 2020-06-06
# SPDX-License-Identifier: MPL-2.0
# Visit <https://editorconfig.org/> for more information.
root = true
[*]
indent_style = space
indent_size = 2
tab_width = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = off
[*.{js,qml}]
indent_style = tab
indent_size = 4
[*.json]
tab_width = 2
insert_final_newline = false
[*.{md,txt}]
indent_size = 4
trim_trailing_whitespace = false
[*.py]
indent_size = 4
max_line_length = 80
[**/Makefile*]
indent_style = tab
[ChangeLog]
indent_style = tab
indent_size = 4