1
0
.dotfiles/home/.editorconfig

29 lines
569 B
INI
Raw Normal View History

2014-07-31 19:03:54 +00:00
# Top-most EditorConfig file
root = true
2017-01-11 18:40:10 +00:00
# Common settings for all files. I don't specify indent type here, because
# some EditorConfig implementations (notably Atom) will cause default settings
# and behaviors (like tab type auto-detection) to be overridden.
2014-07-31 19:03:54 +00:00
[*]
2014-12-06 01:45:29 +00:00
charset = utf-8
2014-07-31 19:03:54 +00:00
end_of_line = lf
2014-12-06 01:45:29 +00:00
trim_trailing_whitespace = true
insert_final_newline = true
2014-07-31 19:03:54 +00:00
2017-01-11 18:40:10 +00:00
# Python
2014-07-31 19:03:54 +00:00
[*.py]
indent_style = space
indent_size = 4
2017-01-11 18:40:10 +00:00
# YAML and Markdown
[*.{yml,yaml,md}]
2014-12-06 01:45:29 +00:00
indent_style = space
indent_size = 2
2017-01-11 18:40:10 +00:00
# CoffeeScript
[*.coffee]
2015-06-26 23:59:28 +00:00
indent_style = space
indent_size = 2
2014-07-31 19:03:54 +00:00
# format:dosini