-
-
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
🌟 Let's talk about output formats options #5364
Comments
I created a working implementation. As the main key I wonder if the flag prefix |
Maybe the new main key can be With the new |
I think the proposal looks good and would be an improvement from the current I think it's fine to (re)use But I also pondering if it would be possible to keep using Thinking ---
out-format:
json:
path: /tmp/out.json
tab:
colors: true --out-format.json.path=/tmp.out.json
--out-format.tab.colors=true In your example in the original post it seems like |
|
I'm not a fan of
Ok so I cannot create a compatibility layer, the PR will be open after the next minor release. |
Note: I trimmed the configuration to only focus on output:
path-prefix: ""
sort-results: true
sort-order:
- linter
- severity
- file
show-stats: true
# ... |
Yeah, I agree. Not sure why I wrote like |
FYI This is why I said I cannot create a compatibility layer without a new name. |
Do we really need compatibility layer here? I confused that cli arg is not consistent with config tree
|
If we merge this inside v1, we need a compatibility layer. But as a compatibility layer is not possible, it will be merged in v2 only.
99% of the current CLI flags are not "consistent", and it's for the better because the goal is not to provide a mapping of the configuration as flags, but to provide some user-friendly flags only for a few options.
|
Important
This is a proposal: I don't know if it is possible and what the impact could be inside the code.
The proposal may evolve.
The current configuration
⛑️ The Problems
Global Options but Only For Some Formats
output.print-issued-lines
is forline-number
,colored-line-number
formats.output.print-linter-name
is forline-number
,colored-line-number
,tab
,colored-tab
formats.Format Names
The names of the colored variants have an unexpected style:
line-number
,colored-line-number
tab
,colored-tab
I think
tab
,tab-colored
are more natural.Slice of Formats
Currently, the formats are represented into a slice, this type has been introduced mainly for compatibility reasons with the initial
format
option (a simple string)A side effect of a slice is the possibility of defining the same format several times but with different output paths.
But I think this is not a real use case.
Another side effect is the flag parsing complexity because the flag
--out-format
value is a simple string.Non-User friendly CLI flag
The current syntax can be used only if you know the syntax and there is no suggestion/completion.
--out-format=checkstyle:report.xml,json:stdout,line-number-colored
💭 Proposal
Configuration
CLI flags
example
Before:
--out-format=checkstyle:report.xml,json:stdout,line-number-colored
After:
The text was updated successfully, but these errors were encountered: