Skip to content

Commit 306a868

Browse files
cq-botClaudeerezrokah
authored
chore(deps): Update dependency golangci/golangci-lint to v2.10.1 (#610)
* chore(deps): Update dependency golangci/golangci-lint to v2.10.1 * fix: Disable revive var-naming lint errors for standard library package names (#612) * Initial plan * fix: Disable revive var-naming lint errors for package names Co-authored-by: erezrokah <26760571+erezrokah@users.noreply.github.com> * Verify linter passes with no errors Co-authored-by: erezrokah <26760571+erezrokah@users.noreply.github.com> * chore: Remove binary from git and update .gitignore Co-authored-by: erezrokah <26760571+erezrokah@users.noreply.github.com> --------- Co-authored-by: anthropic-code-agent[bot] <242468646+Claude@users.noreply.github.com> Co-authored-by: erezrokah <26760571+erezrokah@users.noreply.github.com> --------- Co-authored-by: Claude <242468646+Claude@users.noreply.github.com> Co-authored-by: erezrokah <26760571+erezrokah@users.noreply.github.com> Co-authored-by: Erez Rokah <erezrokah@users.noreply.github.com>
1 parent dc2d440 commit 306a868

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/lint_golang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ jobs:
3434
- name: golangci-lint
3535
uses: golangci/golangci-lint-action@v9
3636
with:
37-
version: v2.8.0
37+
version: v2.10.1
3838
args: --verbose

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ plugin-pb
2424

2525
.DS_Store
2626

27-
.idea/
27+
.idea/
28+
bin/

metrics/metrics.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package metrics
1+
package metrics //nolint:revive // var-naming: package name conflicts with standard library but is appropriate for this context
22

33
import (
44
"sync/atomic"

pb/plugin/v3/arrow_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package plugin
1+
package plugin //nolint:revive // var-naming: package name conflicts with standard library but is appropriate for this context
22

33
import (
44
"testing"

0 commit comments

Comments
 (0)