Skip to content

Commit 87200bd

Browse files
committed
chore: update golangci-lint to v1.64.8 and disable use-errors-new rule
Update linter version from 1.60.3 to 1.64.8 to support newer Go modules. Disable new use-errors-new revive rule to avoid breaking changes on release branch.
1 parent 32da568 commit 87200bd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

backend/.golangci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,3 +207,5 @@ linters-settings:
207207
disabled: true
208208
- name: var-naming
209209
disabled: true
210+
- name: use-errors-new
211+
disabled: true

taskfiles/backend.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tasks:
1717
install-golangci-lint:
1818
desc: install golangci linter
1919
vars:
20-
GO_LINT_VERSION: 1.60.3
20+
GO_LINT_VERSION: 1.64.8
2121
cmds:
2222
- mkdir -p {{ .BUILD_ROOT}}/bin
2323
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "{{ .BUILD_ROOT }}"/bin/go v{{ .GO_LINT_VERSION }}

0 commit comments

Comments
 (0)