We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 325066d commit 68d71b6Copy full SHA for 68d71b6
.golangci.yaml
@@ -10,6 +10,7 @@ linters:
10
- unused
11
- gofmt
12
- gofumpt
13
+ #- goimports
14
linters-settings:
15
govet:
16
enable-all: true
@@ -28,5 +29,12 @@ linters-settings:
28
29
- (*github.com/spf13/cobra.Command).MarkFlagRequired
30
- (*github.com/spf13/pflag.FlagSet).MarkDeprecated
31
- (*github.com/spf13/pflag.FlagSet).MarkHidden
32
+ gofumpt:
33
+ module-path: github.com/databricks/cli
34
+ # Choose whether to use the extra rules.
35
+ # Default: false
36
+ #extra-rules: true
37
+ goimports:
38
+ local-prefixes: github.com/databricks/cli
39
issues:
40
exclude-dirs-use-default: false # recommended by docs https://golangci-lint.run/usage/false-positives/
0 commit comments