diff options
author | silverwind <me@silverwind.io> | 2023-04-22 20:53:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-22 14:53:00 -0400 |
commit | 8dc6eabbc02ef07c76671d53f28baf46871d5b68 (patch) | |
tree | 52e8a1a59e88fc55c76e2adb82e844caae04a970 /.golangci.yml | |
parent | 88201914767e15a51c910d295647d97973fa09bf (diff) | |
download | gitea-8dc6eabbc02ef07c76671d53f28baf46871d5b68.tar.gz gitea-8dc6eabbc02ef07c76671d53f28baf46871d5b68.zip |
Update go tool dependencies, restructure lint targets (#24239)
- Update all tool dependencies to latest tag
- Remove unused errcheck, it is part of golangci-lint
- Include main.go in air
- Enable wastedassign again now that it's
[generics-compatible](https://github.com/golangci/golangci-lint/pull/3689)
- Restructured lint targets to new `lint-*` namespace
Diffstat (limited to '.golangci.yml')
-rw-r--r-- | .golangci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.golangci.yml b/.golangci.yml index ebb90af9d5..1be6b63ef3 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -22,7 +22,7 @@ linters: - unconvert - unused # - varcheck # deprecated - https://github.com/golangci/golangci-lint/issues/1841 - # - wastedassign # disabled - https://github.com/golangci/golangci-lint/issues/2649 + - wastedassign enable-all: false disable-all: true fast: false |