Disable the typecheck linter as it may be redundant or unnecessary in the current setup.
22 lines
273 B
YAML
22 lines
273 B
YAML
version: "2"
|
|
|
|
linters:
|
|
default: none
|
|
enable:
|
|
- govet
|
|
- errcheck
|
|
- staticcheck
|
|
- ineffassign
|
|
- unused
|
|
- gosimple
|
|
- misspell
|
|
- gofmt
|
|
|
|
settings:
|
|
errcheck:
|
|
check-type-assertions: true
|
|
check-blank: false
|
|
|
|
run:
|
|
timeout: 5m
|