go-test-color/.golangci.yml

94 lines
1.4 KiB
YAML
Raw Permalink Normal View History

2022-07-23 14:30:15 +00:00
run:
2023-06-28 17:35:25 +00:00
timeout: 5m
2022-07-23 14:30:15 +00:00
tests: false
skip-dirs:
- ".*test.*"
- ".*mock.*"
- ".*example.*"
2023-02-25 16:33:16 +00:00
- ".*utils.*"
2022-07-23 14:30:15 +00:00
skip-files:
- ".*Mock.*"
- ".*_mock.*"
output:
sort-results: true
linters:
disable-all: true
enable:
2023-02-25 16:33:16 +00:00
# Default
2022-07-23 14:30:15 +00:00
- errcheck
- gosimple
- govet
2023-02-21 09:59:05 +00:00
- ineffassign
2022-07-23 14:30:15 +00:00
- staticcheck
- typecheck
- unused
2023-02-25 16:33:16 +00:00
# Custom
2023-02-21 09:59:05 +00:00
- errchkjson
2022-07-23 14:30:15 +00:00
- errname
- errorlint
- execinquery
2023-02-25 16:33:16 +00:00
- forcetypeassert
2023-02-21 09:59:05 +00:00
- gocritic
2022-07-23 14:30:15 +00:00
- goerr113
- gofumpt
- gosec
- importas
- makezero
- nilnil
2023-06-28 17:35:25 +00:00
- noctx
2022-07-23 14:30:15 +00:00
- prealloc
2023-02-25 16:33:16 +00:00
- reassign
# - rowserrcheck
- sqlclosecheck
2022-07-23 14:30:15 +00:00
- unconvert
2023-02-25 16:33:16 +00:00
# - wastedassign
2022-07-23 14:30:15 +00:00
fast: true
linters-settings:
2023-02-25 16:33:16 +00:00
# Default
2022-07-23 14:30:15 +00:00
govet:
check-shadowing: false
disable-all: true
enable:
- assign
- atomic
- bools
- buildtag
- composites
- copylocks
- fieldalignment
- httpresponse
- loopclosure
- lostcancel
- nilfunc
- printf
- unmarshal
- unreachable
- unusedresult
2023-06-28 17:35:25 +00:00
staticcheck:
checks: ["all", "-SA1019"]
2023-02-25 16:33:16 +00:00
# Custom
2023-02-21 09:59:05 +00:00
gocritic:
2023-02-25 16:33:16 +00:00
disabled-checks:
- ifElseChain
- singleCaseSwitch
2023-06-28 17:35:25 +00:00
- unnamedResult
- whyNoLint
2023-02-21 09:59:05 +00:00
enabled-tags:
2023-02-25 16:33:16 +00:00
- diagnostic
2023-02-21 09:59:05 +00:00
- style
2023-02-25 16:33:16 +00:00
gosec:
2023-06-28 17:35:25 +00:00
excludes:
- G101
- G112
- G402
- G404
- G501
- G505
2023-02-25 16:33:16 +00:00
exclude-generated: true
reassign:
patterns:
- ".*"