version: "2" linters: default: none enable: - dupl - errcheck - gocyclo - gosec - govet - ineffassign - misspell - nakedret - revive - staticcheck - unparam - unused settings: dupl: threshold: 600 exclusions: generated: lax presets: - comments - common-false-positives - legacy - std-error-handling paths: - third_party$ - builtin$ - examples$ formatters: enable: - goimports settings: gofmt: simplify: true exclusions: generated: lax paths: - third_party$ - builtin$ - examples$