ClickHouse/.editorconfig

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
551 B
INI
Raw Permalink Normal View History

2016-04-11 19:24:17 +00:00
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
# Matches multiple files with brace expansion notation
# Set default charset
2016-12-01 22:44:59 +00:00
[*.{c,cpp,cxx,h,hpp,hxx,py,cmake}]
charset = utf-8
indent_style = space
2016-12-01 22:44:59 +00:00
indent_size = 4
trim_trailing_whitespace = true
[CMakeLists.txt]
2016-04-11 19:24:17 +00:00
charset = utf-8
indent_style = space
2016-04-11 19:24:17 +00:00
indent_size = 4
trim_trailing_whitespace = true
# Some SQL results have trailing whitespace which is removed by IDEs
[tests/queries/**.reference]
trim_trailing_whitespace = false