Initial Commit

This commit is contained in:
2021-06-14 09:53:26 +02:00
commit 4a82c7db0e
10 changed files with 288 additions and 0 deletions

28
.golangci.yml Normal file
View File

@ -0,0 +1,28 @@
run:
skip-dirs:
- it
timeout: 10m
tests: true
linters:
disable-all: true
enable:
# Default
- deadcode
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- structcheck
- typecheck
- unused
- varcheck
# Additionally linters
- bodyclose
- misspell
- nilerr
- rowserrcheck
- sqlclosecheck
- unparam