You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove unused linter rules and import prefix configs from golangci config.
Description of Changes
Remove lll linter and its line-length/tab-width settings from .golangci.yaml
Remove Razorpay-specific import prefix sections from goimports formatter config in .golangci.yaml
Remove max-len setting from golines formatter config in .golangci.yaml
Note for Reviewer
Removing lll (line length linter) and golines max-len means line length will no longer be enforced. Confirm this is intentional and won't cause style inconsistencies.
This PR modifies only the .golangci.yaml linter configuration file, removing the lll (line-length) linter and its config, removing two import prefix groupings for razorpay internal packages, and removing the max-len setting from golines. No production code, business logic, API handlers, or test files are touched. Applying generic risk indicators, this is a config file tweak that relaxes linting/formatting rules and does not affect runtime behavior in any way. The blast radius is zero for production systems — only the CI linting pipeline is affected, and in a permissive direction (fewer lint rules enforced).
ℹ️ Auto-Approval Unavailable — This repository does not have a risk-assessment skill installed. Low-risk PRs like this one require the skill for auto-approval. How to set up review skills →
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Removed unwanted things from .golangci.yaml file