gopher.nvim/.editorconfig
Smirnov Oleksandr bc3ce343a8
update tooling (#38)
* chore: delete pre-commit

* chore: switch from makefile to taskfile

* chore(ci): update and add one more linter

* chore(editorconfig): add config for Go

* chore(editorconfig): remove max_line_length

* fix: editorconfig-check on README.md
2023-07-20 00:11:59 +03:00

19 lines
259 B
INI

root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace=true
charset = utf-8
[*.{lua,vim}]
indent_size = 2
[*.{md,yml,yaml,toml}]
indent_size = 2
[*.go]
indent_style = tab
indent_size = 4