# see https://editorconfig.org/
root = true

[*]
# Use Unix-style newlines for most files (except Windows files, see below).
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_size = 2
indent_style = space
# max_line_length = 120
trim_trailing_whitespace = true

[*.{bat,cmd,ps1}]
end_of_line = crlf

[*.{bash,sh}]
indent_size = 2
indent_style = space

[*.csv]
insert_final_newline = false
trim_trailing_whitespace = true

[*.md]
max_line_length = 239
trim_trailing_whitespace = false

[go.mod]
indent_style = tab

[*.{py,ipynb}]
indent_size = unset
indent_style = space

[*.tsv]
indent_style = tab

[*.{yml,yaml}]
indent_size = 2
indent_style = space

[Makefile]
indent_style = tab
