Files
Atay-Makhzan/.editorconfig
T

31 lines
390 B
INI
Raw Normal View History

2015-03-13 21:20:08 -06:00
# http://editorconfig.org
root = true
[*]
charset = utf-8
2016-08-29 22:05:44 -03:00
insert_final_newline = true
trim_trailing_whitespace = true
2016-08-30 16:18:33 -07:00
[*.go]
2015-03-13 21:20:08 -06:00
indent_style = tab
indent_size = 8
2015-03-13 21:20:08 -06:00
2016-11-28 14:27:59 +01:00
[*.{tmpl,html}]
2016-11-05 12:55:27 +01:00
indent_style = tab
2016-11-28 14:27:59 +01:00
indent_size = 4
2016-11-05 12:55:27 +01:00
2019-02-05 22:59:26 +01:00
[*.less]
2015-03-13 21:20:08 -06:00
indent_style = space
2016-11-28 14:27:59 +01:00
indent_size = 4
2016-08-29 22:05:44 -03:00
2019-02-11 07:13:30 +01:00
[*.{yml,json}]
2017-06-14 21:47:42 -05:00
indent_style = space
indent_size = 2
2016-08-29 22:05:44 -03:00
[*.js]
indent_style = space
indent_size = 4
2016-11-28 14:27:59 +01:00
[Makefile]
indent_style = tab