Conversation
|
Important Review skippedReview was skipped due to path filters ⛔ Files ignored due to path filters (1)
CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Tip Try Coding Plans. Let us write the prompt for your AI agent so you can ship faster (with fewer bugs). Comment |
johnallers
left a comment
There was a problem hiding this comment.
Not sure how others feel, but it seems reasonable to me.
Why
Test files naturally repeat string literals (
"user","group","expected", etc.) across test cases. Extracting these into constants hurts test readability without meaningful safety benefit. This is standard Go community practice.What this changes
Adds an exclusion rule to
.golangci.ymlthat skipsgoconstchecks in*_test.gofiles:This affects all repos that use this config via the verify workflow.