31 lines
484 B
INI
31 lines
484 B
INI
# EditorConfig is awesome: https://EditorConfig.org
|
|
root = true
|
|
|
|
[*]
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
[{Makefile,go.mod,go.sum,*.go,*.templ,.gitmodules}]
|
|
charset = utf-8
|
|
indent_style = tab
|
|
tab_width = 4
|
|
indent_size = 4
|
|
|
|
[*.md]
|
|
indent_size = 4
|
|
trim_trailing_whitespace = false
|
|
|
|
eclint_indent_style = unset
|
|
|
|
[Dockerfile]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[{*.js,*.ts}]
|
|
charset = utf-8
|
|
indent_style = space
|
|
tab_width = 4
|
|
indent_size = 4
|
|
|