mirror of https://github.com/databricks/cli.git
39 lines
957 B
YAML
39 lines
957 B
YAML
linters:
|
|
disable-all: true
|
|
enable:
|
|
- bodyclose
|
|
- errcheck
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- staticcheck
|
|
- unused
|
|
- gofmt
|
|
- gofumpt
|
|
- goimports
|
|
linters-settings:
|
|
govet:
|
|
enable-all: true
|
|
disable:
|
|
- fieldalignment
|
|
- shadow
|
|
gofmt:
|
|
rewrite-rules:
|
|
- pattern: 'a[b:len(a)]'
|
|
replacement: 'a[b:]'
|
|
- pattern: 'interface{}'
|
|
replacement: 'any'
|
|
errcheck:
|
|
exclude-functions:
|
|
- (*github.com/spf13/cobra.Command).RegisterFlagCompletionFunc
|
|
- (*github.com/spf13/cobra.Command).MarkFlagRequired
|
|
- (*github.com/spf13/pflag.FlagSet).MarkDeprecated
|
|
- (*github.com/spf13/pflag.FlagSet).MarkHidden
|
|
gofumpt:
|
|
module-path: github.com/databricks/cli
|
|
extra-rules: true
|
|
#goimports:
|
|
# local-prefixes: github.com/databricks/cli
|
|
issues:
|
|
exclude-dirs-use-default: false # recommended by docs https://golangci-lint.run/usage/false-positives/
|