Skip to content

Commit

Permalink
chore: update linter configuration and changelog titles
Browse files Browse the repository at this point in the history
- Remove the `deadcode` linter
- Remove the `structcheck` linter
- Remove the `varcheck` linter
- Update the comment in the `.goreleaser.yaml` file for skipping the build
- Update the title in the `changelog` section for "Bug fixes"
- Update the title in the `changelog` section for "Enhancements"
- Update the regex patterns in the `changelog` section for "docs" and "CICD"

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
  • Loading branch information
appleboy committed Nov 25, 2023
1 parent f8b2357 commit bf2c9df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
3 changes: 0 additions & 3 deletions .golangci.yml
Expand Up @@ -4,7 +4,6 @@ linters:
fast: false
enable:
- bodyclose
- deadcode
- depguard
- dogsled
- dupl
Expand All @@ -29,13 +28,11 @@ linters:
- nolintlint
- rowserrcheck
- staticcheck
- structcheck
- stylecheck
- typecheck
- unconvert
- unparam
- unused
- varcheck
- whitespace
- gofumpt

Expand Down
11 changes: 5 additions & 6 deletions .goreleaser.yaml
@@ -1,8 +1,7 @@
project_name: queue

builds:
-
# If true, skip the build.
- # If true, skip the build.
# Useful for library projects.
# Default is false
skip: true
Expand Down Expand Up @@ -38,10 +37,10 @@ changelog:
- title: Features
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: 'Bug fixes'
- title: "Bug fixes"
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- title: 'Enhancements'
- title: "Enhancements"
regexp: "^.*chore[(\\w)]*:+.*$"
order: 2
- title: Others
Expand All @@ -52,6 +51,6 @@ changelog:
# the changelog
# Default is empty
exclude:
- '^docs'
- 'CICD'
- "^docs"
- "CICD"
- typo

0 comments on commit bf2c9df

Please sign in to comment.