Module structure
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
cover.*
|
||||||
46
.golangci.yaml
Normal file
46
.golangci.yaml
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
linters:
|
||||||
|
enable-all: true
|
||||||
|
disable:
|
||||||
|
# re-enable when working
|
||||||
|
- rowserrcheck
|
||||||
|
- wastedassign
|
||||||
|
# maybe enable these
|
||||||
|
- wrapcheck
|
||||||
|
# leave these disabled
|
||||||
|
- cyclop
|
||||||
|
- deadcode
|
||||||
|
- dupl
|
||||||
|
- exhaustivestruct
|
||||||
|
- exhaustruct
|
||||||
|
- forbidigo
|
||||||
|
- forcetypeassert
|
||||||
|
- funlen
|
||||||
|
- gochecknoglobals
|
||||||
|
- gocognit
|
||||||
|
- goconst
|
||||||
|
- godox
|
||||||
|
- golint
|
||||||
|
- gomnd
|
||||||
|
- ifshort
|
||||||
|
- interfacer
|
||||||
|
- lll
|
||||||
|
- maintidx
|
||||||
|
- maligned
|
||||||
|
- nilnil
|
||||||
|
- nestif
|
||||||
|
- nlreturn
|
||||||
|
- nolintlint
|
||||||
|
- nosnakecase
|
||||||
|
- scopelint
|
||||||
|
- structcheck
|
||||||
|
- thelper
|
||||||
|
- varcheck
|
||||||
|
- varnamelen
|
||||||
|
linters-settings:
|
||||||
|
tagliatelle:
|
||||||
|
case:
|
||||||
|
use-field-name: true
|
||||||
|
rules:
|
||||||
|
json: goCamel
|
||||||
|
wsl:
|
||||||
|
allow-separated-leading-comment: true
|
||||||
18
justfile
Normal file
18
justfile
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
go := env_var_or_default('GOCMD', 'go')
|
||||||
|
|
||||||
|
default: tidy test
|
||||||
|
|
||||||
|
tidy:
|
||||||
|
{{go}} mod tidy
|
||||||
|
goimports -l -w .
|
||||||
|
gofumpt -l -w .
|
||||||
|
{{go}} fmt ./...
|
||||||
|
|
||||||
|
test:
|
||||||
|
{{go}} vet ./...
|
||||||
|
golangci-lint run ./...
|
||||||
|
{{go}} test -race -coverprofile=cover.out -timeout=60s ./...
|
||||||
|
{{go}} tool cover -html=cover.out -o=cover.html
|
||||||
|
|
||||||
|
todo:
|
||||||
|
-git grep -e TODO --and --not -e ignoretodo
|
||||||
Reference in New Issue
Block a user