citus/.editorconfig

31 lines
629 B
INI

# top-most EditorConfig file
root = true
# rules for all files
# we use tabs with indent size 4
[*]
indent_style = tab
indent_size = 4
tab_width = 4
end_of_line = lf
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true
# Don't change test outputs, data files, C files, markdowns and generated files
[{*.{out,png,data,md,guess,c,h,lock},LICENSE,configure}]
insert_final_newline = unset
trim_trailing_whitespace = unset
indent_style = unset
indent_size = unset
[*.{sql,sh,py,spec,json,source}]
indent_style = space
indent_size = 4
tab_width = 4
[*.yml]
indent_style = space
indent_size = 2
tab_width = 2