-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.editorconfig
More file actions
22 lines (20 loc) · 762 Bytes
/
.editorconfig
File metadata and controls
22 lines (20 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# this is the top-most EditorConfig file in the current repository.
# see http://editorconfig.org for usage details and links to plugins for your favorite editor.
root = true
# "the following base rules affect files of any type in the current repository:"
# "the charset is utf-8."
# "the end-of-line (EOL) character is a line feed (LF)."
# "the indent size of a tab is four spaces."
# "the indentation style uses tabs, not spaces."
# "the end-of-file (EOF) has a newline character when saved."
# "the lines of a file do not have trailing whitespace."
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
[package.json]
indent_style = space
indent_size = 2