From 4133eb1cc1ad4e99a74cf2922fa605e2f2305987 Mon Sep 17 00:00:00 2001 From: Robert Zaremba Date: Wed, 31 Aug 2022 00:03:28 +0200 Subject: [PATCH] chore: remove abandoned linters (#1309) ## Description Use `unused` linter insead of `deadcode`, `varcheck` and `structcheck` which are abandoned. --- ### Author Checklist _All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues._ I have... - [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [ ] added appropriate labels to the PR - [ ] targeted the correct branch (see [PR Targeting](https://github.com/umee-network/umee/blob/main/CONTRIBUTING.md#pr-targeting)) - [ ] provided a link to the relevant issue or specification - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [ ] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist _All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items._ I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable) --- .golangci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index de24b0bba4..e3d892ead2 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -20,7 +20,6 @@ linters: # - wsl - asciicheck - bodyclose - - deadcode - depguard - dogsled - errcheck @@ -41,14 +40,12 @@ linters: - prealloc - revive - staticcheck - - structcheck - stylecheck - typecheck - unconvert - unparam - unused - usestdlibvars - - varcheck issues: exclude-rules: