-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.editorconfig
More file actions
39 lines (24 loc) 路 703 Bytes
/
Copy path.editorconfig
File metadata and controls
39 lines (24 loc) 路 703 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
32
33
34
35
36
37
38
39
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
# editorconfig.org
# Use top-most EditorConfig file
root = true
[*]
# Unix-style newlines at the bottom of every file
end_of_line = lf
charset = utf-8
# Remove any whitespace characters preceding newline characters
trim_trailing_whitespace = true
insert_final_newline = false
# Tab indentation
indent_style = space
indent_size = 4
# Give operators breathing room, but not brackets
spaces_around_operators = true
spaces_around_brackets = false
[.js]
quote_type = single
curly_bracket_next_line = false
[.html]
quote_type = double
[*.{diff, md}]
trim_trailing_whitespace = false