Skip to content

Commit

Permalink
Add golangci-lint config file
Browse files Browse the repository at this point in the history
  • Loading branch information
DownerCase committed Dec 16, 2024
1 parent 10b7f58 commit 8dcaf9c
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .golangci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
linters:
enable-all: true
disable:
- exportloopref # Deprecated
- execinquery # Deprecated
- gci
- gocritic
- gofumpt
- forbidigo
- godot
- godox
- gomnd
- ireturn
- exhaustruct
- mnd
- forcetypeassert
- nlreturn
- nonamedreturns
- paralleltest
- predeclared
- testpackage
- thelper
- varnamelen
- wrapcheck
- wsl
- err113
- stylecheck
- gochecknoglobals
- depguard
- cyclop
- whitespace
- revive
- goimports
- gosec
- protogetter
- funlen

0 comments on commit 8dcaf9c

Please sign in to comment.