-
-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy path.editorconfig
More file actions
31 lines (24 loc) · 593 Bytes
/
Copy path.editorconfig
File metadata and controls
31 lines (24 loc) · 593 Bytes
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
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# Top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
# Trim trailing whitespace automatically
trim_trailing_whitespace = true
# Set default charset
charset = utf-8
# Use tabs for indentation
[*.{py,html}]
indent_style = space
indent_size = 4
[*.{js,yml}]
indent_style = space
indent_size = 2
# Ignore some directories
[**/__pycache__]
[**/migrations]
[**/node_modules]
[docs/*.md]