mirror of https://github.com/databricks/cli.git
20 lines
525 B
YAML
20 lines
525 B
YAML
|
linters:
|
||
|
disable-all: true
|
||
|
enable:
|
||
|
# errcheck and govet are part of default setup and should be included but give too many errors now
|
||
|
# once errors are fixed, they should be enabled here:
|
||
|
#- errcheck
|
||
|
- gosimple
|
||
|
#- govet
|
||
|
- ineffassign
|
||
|
- staticcheck
|
||
|
- unused
|
||
|
- gofmt
|
||
|
linters-settings:
|
||
|
gofmt:
|
||
|
rewrite-rules:
|
||
|
- pattern: 'a[b:len(a)]'
|
||
|
replacement: 'a[b:]'
|
||
|
issues:
|
||
|
exclude-dirs-use-default: false # recommended by docs https://golangci-lint.run/usage/false-positives/
|