Andrew Bradley
Andrew Bradley
Agreed; signale's ordering seems wrong. The log levels are listed here: https://github.com/klaussinani/signale/blob/master/src/signale.js#L90-L98 This is contrary to, for example, https://github.com/winstonjs/winston#logging-levels, which is apparently referring to an RFC. Regardless, Winston's ordering is...
@rafaelrpinto since you made it halfway through the refactor, did you try the subclassing solution I proposed?
That makes sense. They should add that mechanism to their official API so it's not a workaround.
> Implement `PartialCommand` type correctly Declared here: https://github.com/arcanis/clipanion/pull/89/files#diff-4a1eed5930fe968b46fdf97ea4fc46e1c61585a16fbd0b4565eae339a345d050R46 I'm not sure how the type needs to change, though. > Investigate possible bug where rest consumes trailing positionals Is there a...
For both this and #99, do you have any guidance on writing tests? I skimmed the tests and I can see the `--help` tests. However, I expected to see some...
Right, this issue is about when you have other documented commands.
I've started implementing this and I have a question about the headers used for categories. Here is the current output of option categories. Each gets a header at the same...
Thinking out loud, the `orderCategories` option feels more obvious and straightforward. The array can be declared once, then imported anywhere it is needed. ``` export const categoryGeneral = 'Options'; export...
I think lint-diff should be implemented as an eslint plugin providing a "processor." https://eslint.org/docs/developer-guide/working-with-plugins#processors-in-plugins Processors can postprocess the linter failures discovered by eslint, so the filtering can happen there. If...
@paleite very cool, I'll check it out! Is there a way to specify the diff it should use? My team needs to run it on CI, so we want to...