Add .editorconfig as an INI file

See http://editorconfig.org
This commit is contained in:
Ben Scott
2013-01-31 14:35:39 -08:00
parent 05c49245b0
commit 495b50cbda
2 changed files with 12 additions and 0 deletions

View File

@@ -585,6 +585,8 @@ INI:
- .prefs - .prefs
- .properties - .properties
primary_extension: .ini primary_extension: .ini
filenames:
- .editorconfig
IRC log: IRC log:
lexer: IRC logs lexer: IRC logs

View File

@@ -0,0 +1,10 @@
; editorconfig.org
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true