Skip to content

Commit

Permalink
Enable additional linters
Browse files Browse the repository at this point in the history
  • Loading branch information
jawnsy authored and ryancurrah committed Jun 22, 2021
1 parent eb1a3df commit 144302e
Showing 1 changed file with 97 additions and 5 deletions.
102 changes: 97 additions & 5 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,132 @@
# See https://golangci-lint.run/usage/configuration/

linters-settings:
revive:
# see https://github.com/mgechev/revive#available-rules for details.
ignore-generated-header: true
severity: warning
rules:
- name: atomic
# - name: bare-return
- name: blank-imports
- name: bool-literal-in-expr
- name: call-to-gc
- name: confusing-naming
- name: confusing-results
- name: constant-logical-expr
- name: context-as-argument
- name: context-keys-type
- name: deep-exit
- name: defer
- name: dot-imports
- name: duplicated-imports
- name: early-return
- name: empty-block
- name: empty-lines
- name: error-naming
- name: error-return
- name: error-strings
- name: errorf
- name: exported
# - name: flag-parameter
- name: get-return
- name: identical-branches
- name: if-return
- name: import-shadowing
- name: increment-decrement
- name: indent-error-flow
- name: modifies-parameter
- name: modifies-value-receiver
- name: package-comments
- name: range
- name: range-val-address
- name: range-val-in-closure
- name: receiver-naming
- name: redefines-builtin-id
- name: string-of-int
- name: struct-tag
- name: superfluous-else
- name: time-naming
- name: unconditional-recursion
- name: unexported-naming
- name: unexported-return
# - name: unhandled-error
- name: unnecessary-stmt
- name: unreachable-code
- name: unused-parameter
# - name: unused-receiver
- name: var-declaration
- name: var-naming
- name: waitgroup-by-value

linters:
disable-all: true
enable:
- asciicheck
- bodyclose
# - cyclop
- deadcode
- depguard
- dogsled
- dupl
- durationcheck
- errcheck
- exportloopref
- errorlint
- exhaustive
# - exhaustivestruct
- exportloopref
# - forbidigo
- forcetypeassert
- funlen
# - gci
# - gochecknoglobals
- gochecknoinits
- gocognit
- goconst
- gocritic
- gocyclo
- gofmt
- godot
- godox
- goerr113
- goimports
- golint
- gomnd
- gomoddirectives
- gomodguard
- goprintffuncname
- gosec
- gosimple
- govet
# - ifshort
- importas
- ineffassign
- lll
- makezero
- misspell
- nakedret
- nestif
- nilerr
# - nlreturn
- noctx
- nolintlint
# - paralleltest
- prealloc
- predeclared
# - promlinter
- revive
- rowserrcheck
- sqlclosecheck
- staticcheck
- structcheck
- stylecheck
# - typecheck
# - tagliatelle
- testpackage
- thelper
- tparallel
- typecheck
- unconvert
- unparam
- unused
- varcheck
# - wastedassign
- whitespace
# - wrapcheck
- wsl

0 comments on commit 144302e

Please sign in to comment.