-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Separate relative path mode for config vs output #5646
Comments
Hello, |
I've made a contrived example that demonstrates the issue, you can see the workflow run here with the output paths for a file Clicking the link I say contrived example as I'm normally using a reusable action with the config file and rules inside the reusable action repo so normally the path would be the relative path between where the reusable action is checked out and the workspace where the code is checked out leading to a much more complex relative path than just a single |
Why do you not use the other modes?
Do you have a reproducible example of this behavior? |
I was tricked by the cache. |
When trying gitroot with a reusable workflow it failed attempting to load the ruleguard files from the path relative to the gitroot, but in my simple example all in one repo it seems to work. I'm not sure why there is a difference, will try splitting out the action like I have in my real repo and see if I can reproduce it there |
The v1 was working only because the report paths where relative to |
Just to confirm though, is |
relative to the path obtained by the |
I know your example is contrived but something like that works: version: "2"
run:
relative-path-mode: gitroot
linters:
enable:
- gocritic
settings:
gocritic:
enabled-checks:
- ruleguard
settings:
ruleguard:
failOn: all
rules: ${base-path}/linter-config/ruleguard/*.go |
I introduced the modes like So, can you say if my previous example works for your real context? |
That would work in that contrived example, although the issue is the real world example the linter-config directory is not housed under the gitroot or gomod as it's in an entirely separate path as housed in a reusable action For example the config file would be at: Having |
I don't think that I have another idea. For me, the problem is not related to paths inside the configuration but to the paths of the reports. I differentiate "matching paths" and "user-facing paths". |
I have a question: are you defining exclusion paths or rules (not The The The So, I guess you are not using exclusion paths or rules. |
I am actually, but only
Yeah, hence allowing a separate variable to be used in things like ruleguard ruleset paths that always points to the config path was my idea of a solution. I agree using the config file path for anything other than config (eg exclusion paths) would be super confusing though, so maybe if a |
Welcome
How did you install golangci-lint?
Official GitHub Action
Your feature request related to a problem? Please describe
Specifying a relative path mode of cfg is needed to reliably detect additional config files such as for ruleguard.
Unfortunately this then results in linter outputs using paths relative to the cfg directory too so they start with eg
../../../../../../
breaking CI workflows from referencing the right fileDescribe the solution you'd like
A way to specify ruleguard configuration relative to the config directory but path outputs relative to either the working directory, gitroot, or go mod root would fix the issue.
Describe alternatives you've considered
This seemed to work fine under golangci-lint 1.x. Specifying gitroot as the relative-path-mode breaks loading ruleguard rules but output paths are fine, specifying cfg allows ruleguard rules to load fine but output paths are wrong.
Additional context
ruleguard config:
Supporter
The text was updated successfully, but these errors were encountered: