Added .editorconfig to automatically set proper tab settings, as supported by many text editors.

This commit is contained in:
Manu Evans 2014-05-07 23:38:01 +10:00
parent e5c8d6f146
commit 00d9457404

15
.editorconfig Normal file
View file

@ -0,0 +1,15 @@
root = true
; Standard conventions for the D programming language repository are:
; no tab characters
; indents are by 4 spaces
; line endings are LF
; no trailing whitespace
; last character in file is an LF
[*]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
end_of_line = lf