linters: enable: - bodyclose - deadcode - depguard - dogsled - errcheck - goconst - gocritic - gofmt - goimports - golint - gosec - gosimple - govet - ineffassign - interfacer - misspell - maligned - nakedret - prealloc - scopelint - staticcheck - structcheck - stylecheck - typecheck - unconvert - unused - varcheck issues: exclude-rules: - text: "Use of weak random number generator" linters: - gosec - text: "ST1003:" linters: - stylecheck linters-settings: dogsled: max-blank-identifiers: 3 maligned: # print struct with more effective memory layout or not, false by default suggest-new: true errcheck: # report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`; # default is false: such cases aren't reported by default. check-blank: true golint: # minimal confidence for issues, default is 0.8 min-confidence: 0 prealloc: # XXX: we don't recommend using this linter before doing performance profiling. # For most programs usage of prealloc will be a premature optimization. # Report preallocation suggestions only on simple loops that have no returns/breaks/continues/gotos in them. # True by default. simple: false range-loops: true # Report preallocation suggestions on range loops, true by default for-loops: true # Report preallocation suggestions on for loops, false by default