-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
39 lines (35 loc) · 1.64 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 = 4
# 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
# #############################################################################
# # PACKAGE FILES #
# #############################################################################
[{package.json,bower.json}]
# The indent size used in the `package.json` file cannot be changed, see
# https://github.com/npm/npm/pull/3180#issuecomment-16336516
indent_style = space
indent_size = 2
# #############################################################################
# # MARKDOWN FILES #
# #############################################################################
[*.md]
# Do not remove trailing spaces for explicit line-breaks.
trim_trailing_whitespace = false