-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.editorconfig
30 lines (27 loc) · 1.21 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
# This file is for unifying the coding style for different editors
# and IDEs. EditorConfig is awesome: https://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