-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
.editorconfig
38 lines (31 loc) · 942 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
# SPDX-FileCopyrightText: 🄯 2019-2021 Peter J. Mello <admin@petermello.net>
#
# SPDX-License-Identifier: CC0-1.0
# ----------------------------------------------------------------------------
# Version: 1.0.1 (Using <https://semver.org/>)
#
# Updated: 2020-03-27
# ----------------------------------------------------------------------------
# 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]
indent_style = tab
[*.{md,txt}]
indent_size = 4
trim_trailing_whitespace = false
[*.py]
indent_size = 4
[**/Makefile*]
indent_style = tab
[ChangeLog]
indent_style = tab
indent_size = 4