-
Notifications
You must be signed in to change notification settings - Fork 1
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
chore: remove unused linters #21
Conversation
WalkthroughThe changes in this pull request involve modifications to the Changes
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
🔇 Additional comments (4).golangci.yml (2)
The formatting changes in the issues section maintain the same functionality while improving consistency. Line range hint The removal of Let's verify the deprecation status of these linters: proxy/grpc/client.go (2)
The reordering of the import statement doesn't affect functionality. Line range hint The switch from Let's check for any custom connection options that might need adjustment: ✅ Verification successfulBased on the search results, I can now generate the final response as I have sufficient information about the gRPC connection options usage in the codebase. The connection options usage is compatible with grpc.Dial The codebase shows consistent and standard usage of gRPC dial options:
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Search for any custom gRPC dial options or connection configurations
# that might need adjustment with the new grpc.Dial usage
# Check for any custom DialOption definitions or usages
rg -A 3 "grpc\.WithBlock|grpc\.WithInsecure|grpc\.WithTransport|grpc\.WithDialer|DialOption"
# Check for any connection-related configurations
rg -A 3 "grpc\.Dial.*opts"
Length of output: 1172 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
LGTM
I replaced this PR with #28 |
Overview
Removes dead linters that were printing errors.
NOTE: #9 broke the linter. Lots of errors.
Summary by CodeRabbit
New Features
Bug Fixes
Chores