Victorien Elvinger
Victorien Elvinger
> `namespace T { } // OK (type-only)` I still find confusing that `declare` is not required here to make the namespace ambient/non-instantiated. This requires extra work for a compiler/linter...
> Try removing the Partial macro. Could you explain the reasons for removing this macro and what you are using instead?
Thanks for the rationales. I agree with your points. Overall, I think this will reduce the complexity of the configuration.
> Based on my understanding of this feature, I summarized the logic as the table below. Is it ok that I refactor the code to use π to determine whether...
We could create a new domain that contains all the rules that are not already in a domain. This ensures that every rule is in at most one domain. The...
I think we could not set the options that have the same default as Prettier. `ident-size` is one of this option. Also, we could set `formatter.useEditorConfig` to true when we...
You wrote two properties in a single one `-ms-filter: progid: value;`. I don't think it is valid CSS.
This is certainly related to #1570
> Commands without positional arguments will use the full-fledged scanner I find this really confusing because before we didn't allow commands without positional args. In my view `biome check .`...
> Not having an exclude list has caused me some trouble and confusion. How is this related to the current issue? Note that `"!**/*.test.ts"` should certainly be placed after `"**"`....