-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
25 lines (17 loc) · 1.17 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
# place this file in your current project foler and/or in your user directory (ex. ~/.editorconfig)
# special property that should be specified at the top of the file outside of any sections. Set to true to stop .editorconfig files search on current file.
root = true
# set to tab or space to use hard tabs or soft tabs respectively.
indent_style = tab
# a whole number defining the number of columns used for each indentation level and the width of soft tabs (when supported). When set to tab, the value of tab_width (if specified) will be used.
indent_size = 4
# a whole number defining the number of columns used to represent a tab character. This defaults to the value of indent_size and doesn't usually need to be specified.
tab_width = 4
# set to lf, cr, or crlf to control how line breaks are represented.
end_of_line = lf
# set to latin1, utf-8, utf-8-bom, utf-16be or utf-16le to control the character set.
charset = utf-8
# set to true to remove any whitespace characters preceding newline characters and false to ensure it doesn't.
trim_trailing_whitespace = true
# set to true to ensure file ends with a newline when saving and false to ensure it doesn't.
insert_final_newline = true