UNPKG

439 BPlain TextView Raw
1# EditorConfig is awesome: http://EditorConfig.org
2
3# top-most EditorConfig file
4root = true
5
6[*]
7# use line feed
8end_of_line = lf
9
10# ensure file ends with a newline when saving
11insert_final_newline = true
12
13# soft tabs
14indent_style = space
15
16# number of columns used for each indentation level
17indent_size = 2
18
19# remove any whitespace characters preceding newline characters
20trim_trailing_whitespace = true
21
22# character set
23charset = utf-8