Skip to content

Commit 1876d86

Browse files
committed
feat: add .editorconfig
1 parent 07e4122 commit 1876d86

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.editorconfig

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.py]
12+
indent_size = 4
13+
14+
[*.{json,yml,yaml}]
15+
indent_size = 2
16+
17+
[*.tf]
18+
indent_size = 2
19+
20+
[*.{md,markdown}]
21+
trim_trailing_whitespace = false
22+
23+
[*.sh]
24+
indent_size = 2
25+
26+
[Makefile]
27+
indent_style = tab

0 commit comments

Comments
 (0)