kibana/.editorconfig
Timothy Sullivan 4d4be167b0 update .editorconfig for Markdown
- add trim_trailing_whitespace to .editorconfig, because trailing spaces
  in Markdown have the function of <br>
- also added some content in the CONTRIBUTING doc about Editorconfig
2015-09-14 12:10:32 -07:00

15 lines
236 B
INI

# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
insert_final_newline = false