Compare commits

...

2 Commits

Author SHA1 Message Date
sudo pacman -Syu 77df66c1f3 chore: sync golangci-lint 2023-06-29 00:35:25 +07:00
sudo pacman -Syu 9c680d8dc9 chore(changelog): generate v0.13.0 2023-06-10 11:01:00 +07:00
2 changed files with 33 additions and 5 deletions

View File

@ -1,16 +1,14 @@
run:
timeout: 2m
timeout: 5m
tests: false
skip-dirs:
- ".*test.*"
- ".*mock.*"
- ".*generated.*"
- ".*example.*"
- ".*utils.*"
skip-files:
- ".*Mock.*"
- ".*_mock.*"
- ".*_generated.*"
output:
sort-results: true
@ -35,11 +33,11 @@ linters:
- gocritic
- goerr113
- gofumpt
- gomodguard
- gosec
- importas
- makezero
- nilnil
- noctx
- prealloc
- reassign
# - rowserrcheck
@ -69,16 +67,26 @@ linters-settings:
- unmarshal
- unreachable
- unusedresult
staticcheck:
checks: ["all", "-SA1019"]
# Custom
gocritic:
disabled-checks:
- ifElseChain
- singleCaseSwitch
- unnamedResult
- whyNoLint
enabled-tags:
- diagnostic
- style
- performance
gosec:
excludes:
- G101
- G112
- G402
- G404
- G501
- G505
exclude-generated: true
reassign:
patterns:

View File

@ -1,5 +1,25 @@
# CHANGELOG
## v0.13.0 (2023-06-10)
### Added
- feat: update lint (2023-02-25)
### Others
- build(deps): bump goreleaser/goreleaser-action from 2 to 4 (2023-03-22)
- build(deps): bump actions/setup-go from 3 to 4 (2023-03-22)
- chore: update dependabot (2023-03-22)
- build(deps): bump github.com/fatih/color from 1.14.1 to 1.15.0 (2023-03-14)
- chore: update make (2023-02-26)
- chore(changelog): generate v0.12.0 (2023-02-21)
## v0.12.0 (2023-02-21)
### Others