-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.editorconfig
39 lines (35 loc) · 1.53 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
# This file is for unifying the coding style for different editors
# and IDEs. EditorConfig is awesome: http://EditorConfig.org
# ######################################################################
# # TOP-MOST .EDITORCONFIG FILE #
# ######################################################################
root = true
# ######################################################################
# # ALL FILES #
# ######################################################################
[*]
# indent using tabs
indent_style = tab
indent_size = tab
tab_width = 2
# Unix-style newlines with a newline ending every file
end_of_line = lf
insert_final_newline = true
# use UTF-8 without BOM
charset = utf-8
# remove any trailing whitespace
trim_trailing_whitespace = true
# ######################################################################
# # MARKDOWN FILES #
# ######################################################################
[*.md]
# do not remove trailing spaces for line-breaks
trim_trailing_whitespace = false
# ######################################################################
# # PACKAGE FILES #
# ######################################################################
[package.json]
# The indent size used in the `package.json` file cannot be changed
# https://github.com/npm/npm/pull/3180#issuecomment-16336516
indent_style = space
indent_size = 2