UNPKG

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