Add sane editorconfig settings (#3051)

- UNIX line endings
- utf8
- newline at end of file
- trim trailing whitespace
pull/3081/head
Jelte Fennema 2019-10-08 15:07:01 +02:00 committed by GitHub
parent 83667436f7
commit f0f702c604
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -7,6 +7,15 @@ root = true
indent_style = tab indent_style = tab
indent_size = 4 indent_size = 4
tab_width = 4 tab_width = 4
end_of_line = lf
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true
# Don't change test output files
[*.out]
insert_final_newline = unset
trim_trailing_whitespace = unset
[*.sql] [*.sql]
indent_style = space indent_style = space