homelab/.editorconfig

20 lines
321 B
INI
Raw Normal View History

2024-09-21 19:11:45 +00:00
; https://editorconfig.org/
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[{Makefile,go.mod,go.sum,*.go,.gitmodules}]
indent_style = tab
indent_size = 4
[{Dockerfile,*.bash,*.sh}]
indent_style = space
2024-09-23 09:30:05 +00:00
indent_size = 4