gitdataai/.editorconfig
2026-05-30 01:38:40 +08:00

42 lines
588 B
INI

root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.{js,ts,jsx,tsx,json,jsonc,md,yaml,yml,toml}]
indent_style = space
indent_size = 2
[*.py]
indent_style = space
indent_size = 4
[*.go]
indent_style = tab
indent_size = unset
tab_width = 8
[*.rs]
indent_style = space
indent_size = 4
[Makefile]
indent_style = tab
indent_size = unset
[Dockerfile]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false
[*.{yml,yaml}]
indent_style = space
indent_size = 2
[*.toml]
indent_style = space
indent_size = 2