1
|
# http://editorconfig.org
|
2
|
root = true
|
3
|
|
4
|
[*]
|
5
|
# Use hard or soft tabs
|
6
|
indent_style = space
|
7
|
|
8
|
# Size of a single indent
|
9
|
indent_size = tab
|
10
|
|
11
|
# Number of columns representing a tab character
|
12
|
tab_width = 2
|
13
|
|
14
|
# Use line-feed as EOL indicator
|
15
|
end_of_line = lf
|
16
|
|
17
|
# Use UTF-8 character encoding for all files
|
18
|
charset = utf-8
|
19
|
|
20
|
# Remove any whitespace characters preceding newline characters
|
21
|
trim_trailing_whitespace = true
|
22
|
|
23
|
# Ensure file ends with a newline when saving
|
24
|
insert_final_newline = true
|
25
|
|
26
|
[*.md]
|
27
|
trim_trailing_whitespace = false
|