Skip to content

dev: enable revive linter with default config #3622

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

Merged
merged 1 commit into from
Apr 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ linters-settings:
allow-unused: false # report any unused nolint directives
require-explanation: false # don't require an explanation for nolint directives
require-specific: false # don't require nolint directives to be specific about which linter is being skipped
revive:
rules:
- name: unexported-return
disabled: true

linters:
disable-all: true
Expand Down Expand Up @@ -91,6 +95,7 @@ linters:
- nakedret
- noctx
- nolintlint
- revive
- staticcheck
- stylecheck
- typecheck
Expand All @@ -112,7 +117,6 @@ linters:
# - nestif
# - prealloc
# - testpackage
# - revive
# - wsl

issues:
Expand Down