Skip to content

Commit b60133d

Browse files
Claudeerezrokah
andauthored
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>
1 parent 1a8770c commit b60133d

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.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)