docs: updates usage settings for go-mnd (#2476)

This commit is contained in:
Oleg Butuzov 2022-01-14 15:29:29 +02:00 committed by GitHub
parent 8cdecc968b
commit 9dacd6170c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -414,10 +414,17 @@ linters-settings:
settings:
mnd:
# the list of enabled checks, see https://github.com/tommy-muehle/go-mnd/#checks for description.
checks: argument,case,condition,operation,return,assign
# ignored-numbers: 1000
# ignored-files: magic_.*.go
# ignored-functions: math.*
checks:
- argument
- case
- condition
- operation
- return
- assign
# Next settings are expecting comma separated string values
ignored-numbers: "0666,0755,42" # values always ignored: 1, 1.0, 0 and 0.0
ignored-files: "magic1_.*.go" # values always ignored:_test.go
ignored-functions: "math.*,http.StatusText,make" # values always ignored: time.Time
gomoddirectives:
# Allow local `replace` directives. Default is false.