2 files changed,
27 insertions(+),
0 deletions(-)
Author:
Olexandr Smirnov
ss2316544@gmail.com
Committed by:
GitHub
noreply@github.com
Committed at:
2025-07-07 12:25:09 +0300
Parent:
ef386ed
jump to
| A | .editorconfig |
| A | .tool-versions |
A
.editorconfig
··· 1 +root = true 2 + 3 +[*] 4 +indent_style = space 5 +indent_size = 4 6 +end_of_line = lf 7 +insert_final_newline = true 8 +trim_trailing_whitespace = true 9 +charset = utf-8 10 + 11 +[*.go] 12 +indent_style = tab 13 +indent_size = 4 14 +trim_trailing_whitespace = true 15 + 16 +[web/**/*.elm] 17 +indent_style = space 18 +indent_size = 4 19 +trim_trailing_whitespace = true 20 + 21 +[*.{md,yml,yaml}] 22 +indent_size = 2 23 +trim_trailing_whitespace = false