2015-08-10 10:50:02 -05:00
|
|
|
# http://editorconfig.org
|
|
|
|
root = true
|
|
|
|
|
2017-08-24 06:40:19 -05:00
|
|
|
[*]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
2016-03-08 07:31:31 -06:00
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
2017-12-21 01:39:31 -06:00
|
|
|
max_line_length = 120
|
2016-03-08 07:31:31 -06:00
|
|
|
|
2017-08-24 06:40:19 -05:00
|
|
|
[*.go]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 4
|
2015-08-10 10:50:02 -05:00
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
|
|
|
|
2020-02-07 19:40:04 -06:00
|
|
|
[*.{js,ts,tsx,scss}]
|
|
|
|
quote_type = single
|
|
|
|
|
2015-08-10 10:50:02 -05:00
|
|
|
[*.md]
|
|
|
|
trim_trailing_whitespace = false
|
2019-03-27 11:53:49 -05:00
|
|
|
|
|
|
|
[Makefile]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 2
|