mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 15:14:03 +03:00
FILE / ScuroNeko/mtg
.golangci.toml
Исходный файл и его история в репозитории.
23 lines
320 B
TOML
23 lines
320 B
TOML
[run]
|
|
concurrency = 4
|
|
deadline = "2m"
|
|
tests = true
|
|
skip-dirs = ["vendor"]
|
|
|
|
[output]
|
|
format = "colored-line-number"
|
|
|
|
[linters]
|
|
enable-all = true
|
|
disable = [
|
|
"containedctx",
|
|
"exhaustivestruct",
|
|
"exhaustruct",
|
|
"gas",
|
|
"gochecknoglobals",
|
|
"goerr113",
|
|
"ireturn",
|
|
"thelper",
|
|
"varnamelen",
|
|
]
|