-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bruno Schaatsbergen <[email protected]>
- Loading branch information
1 parent
96bdfdd
commit 5e6cac3
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Visit https://golangci-lint.run/ for usage documentation and information on other useful linters | ||
issues: | ||
max-per-linter: 0 | ||
max-same-issues: 0 | ||
|
||
exclude-rules: | ||
# disable funlen for test funcs | ||
- source: "^func Test" | ||
linters: | ||
- funlen | ||
|
||
linters: | ||
disable-all: true | ||
enable: | ||
- bidichk | ||
- durationcheck | ||
- decorder | ||
- dogsled | ||
- errcheck | ||
- exportloopref | ||
- forcetypeassert | ||
- funlen | ||
- godot | ||
- godox | ||
- gofmt | ||
- gosimple | ||
- goconst | ||
- ineffassign | ||
- makezero | ||
- misspell | ||
- nilerr | ||
- predeclared | ||
- staticcheck | ||
- tenv | ||
- unconvert | ||
- unparam | ||
- unused | ||
- vet | ||
|