Skip to content
This repository was archived by the owner on Aug 26, 2024. It is now read-only.

Commit 76d43d9

Browse files
committed
Add .editorconfig file
1 parent 41200aa commit 76d43d9

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.editorconfig

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.{py,rst,ini}]
12+
indent_style = space
13+
indent_size = 4
14+
15+
[*.py]
16+
line_length=120
17+
known_first_party=dj_cookiecutter_demo
18+
multi_line_output=3
19+
default_section=THIRDPARTY
20+
21+
[*.{html,css,scss,json,yml}]
22+
indent_style = space
23+
indent_size = 2
24+
25+
[*.md]
26+
trim_trailing_whitespace = false
27+
28+
[Makefile]
29+
indent_style = tab
30+
31+
[nginx.conf]
32+
indent_style = space
33+
indent_size = 2

0 commit comments

Comments
 (0)