mirror of https://github.com/citusdata/citus.git
Add sane editorconfig settings (#3051)
- UNIX line endings - utf8 - newline at end of file - trim trailing whitespacepull/3081/head
parent
83667436f7
commit
f0f702c604
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue