-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Publish block V1 flag fix #585
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ linters: | |
- deadcode | ||
- varcheck | ||
- interfacebloat | ||
- exhaustruct | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why disable this linter rule? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it was causing too many linter issues as there are many paths that are not ignored. I will have a follow up to properly update the go version and linter |
||
|
||
# | ||
# Disabled because of generics: | ||
|
@@ -121,4 +122,10 @@ issues: | |
exclude-rules: | ||
- path: (.+)_test.go | ||
linters: | ||
- exhaustruct | ||
- exhaustruct | ||
- path: database/.*.go | ||
linters: | ||
- goconst | ||
- path: cmd/tool/.*.go | ||
linters: | ||
- goconst |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could use go 1.22