Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #5 from neotoolkit/feat/lint
Browse files Browse the repository at this point in the history
feat: add golangci lint conf
  • Loading branch information
sashamelentyev committed Feb 8, 2022
2 parents be3fbb1 + fb0feb2 commit 37bf74a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .golangci.yml
@@ -0,0 +1,27 @@
linters:
disable-all: true
enable:
- bodyclose
- deadcode
- dupl
- errcheck
- gochecknoglobals
- gocritic
- gocyclo
- gosimple
- govet
- ineffassign
- makezero
- misspell
- nilerr
- prealloc
- revive
- staticcheck
- structcheck
- stylecheck
- testpackage
- typecheck
- unparam
- unused
- varcheck
- wsl

0 comments on commit 37bf74a

Please sign in to comment.