-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
46 lines (40 loc) · 838 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
# ========================= #
# Editor Configuration File #
# ========================= #
# Top level .editorconfig
# =========================
root = true
# Defaults
# =========================
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
indent = 2
# Python
# =========================
[*.py]
indent_style = space
indent_size = 4
indent = 4
line_length = 120
known_future_library = future,pies
known_standard_library = std,std2
known_third_party = django
multi_line_output = 5
length_sort = True
balanced_wrapping = True
forced_separate = django.contrib,django.utils
default_section = FIRSTPARTY
# JavaScript
# =========================
[*.js]
indent_size = 2
# JSON
# =========================
[*.json]
indent_style = space
indent_size = 2