feat: update lint

main
sudo pacman -Syu 2023-02-25 23:33:16 +07:00
parent 1ab121e7ef
commit 74d0ee14e2
2 changed files with 32 additions and 11 deletions

View File

@ -1,10 +1,12 @@
run:
timeout: 2m
tests: false
skip-dirs:
- ".*test.*"
- ".*mock.*"
- ".*generated.*"
- ".*example.*"
- ".*utils.*"
skip-files:
- ".*Mock.*"
- ".*_mock.*"
@ -16,6 +18,7 @@ output:
linters:
disable-all: true
enable:
# Default
- errcheck
- gosimple
- govet
@ -23,31 +26,30 @@ linters:
- staticcheck
- typecheck
- unused
# Custom
- errchkjson
- errname
- errorlint
- execinquery
- forcetypeassert
- gocritic
- goerr113
- gofumpt
- gomodguard
- gosec
- importas
- makezero
- nilnil
- prealloc
- reassign
# - rowserrcheck
- sqlclosecheck
- unconvert
# - wastedassign
fast: true
linters-settings:
gosec:
excludes:
- G101
- G112
- G402
- G404
- G501
- G505
exclude-generated: true
# Default
govet:
check-shadowing: false
disable-all: true
@ -67,9 +69,17 @@ linters-settings:
- unmarshal
- unreachable
- unusedresult
staticcheck:
checks: ["all", "-SA1019"]
# Custom
gocritic:
disabled-checks:
- ifElseChain
- singleCaseSwitch
enabled-tags:
- diagnostic
- style
- performance
gosec:
exclude-generated: true
reassign:
patterns:
- ".*"

View File

@ -2,6 +2,10 @@
all: test-color lint
go mod tidy
$(MAKE) test-color
$(MAKE) lint
$(MAKE) build
$(MAKE) clean
test-color:
go install github.com/haunt98/go-test-color@latest
@ -12,3 +16,10 @@ lint:
try-4-real:
go run . -race ./example/...
build:
$(MAKE) clean
go build -o go-test-color .
clean:
rm -f go-test-color