-
Notifications
You must be signed in to change notification settings - Fork 4
/
.editorconfig
54 lines (42 loc) · 1.04 KB
/
.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
47
48
49
50
51
52
53
54
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
[*.{js,jsx,json,scss,css,html}]
indent_size = 2
[*.{js,jsx,json,scss,css,html,md}]
indent_style = space
# Docstrings and comments use max_line_length = 79
[*.py]
indent_style = space
indent_size = 4
max_line_length = 79
[*.{md,markdown}]
trim_trailing_whitespace = false
# Minified JavaScript files shouldn't be changed
[**.min.{js,css}]
indent_style = unset
insert_final_newline = unset
# The JSON files contain newlines inconsistently
[*.json]
indent_size = 2
insert_final_newline = unset
# Makefiles always use tabs for indentation
[Makefile]
indent_style = tab
# Batch files use tabs for indentation
[*.bat]
indent_style = tab
[*.yml]
indent_size = 2
[*.{java,scala}]
indent_style = space
indent_size = 2
max_line_length = 80