Masafumi Koba
Masafumi Koba
#5142 seems outdated. Is there a problem with rewriting this issue's title?
Or it seems better to open a new issue. I'll do that later.
Sounds good 👍🏼 Maybe one downside is increasing a dependency that processes the JSON schema, right?
Great. `ajv` is already included in our runtime dependency tree (`stylelint` depends on `table`). ```sh-session $ npm ls ajv [email protected] /Users/masafumi.koba/git/stylelint/stylelint ├─┬ [email protected] │ ├─┬ @eslint/[email protected] │ │ └── [email protected]...
@MrHBS If you're interested, could you please show more specific idea to implement this feature so that others could image it easily?
@MrHBS Thanks for the helpful info. @ota-meshi Do you have any ideas to bring this feature from ESLint?
@erosman Thanks for the report. As you commented, this is a bug. I've labeled the issue as **ready to implement**. Please consider [contributing](https://stylelint.io/contributing) if you have time. There are [steps...
> PS. (on another note) Is there a rule for empty selector value? 🤔 Sadly, we have no such a rule in the [built-in rules](https://stylelint.io/user-guide/rules/). If you're interested, feel free...
For your reference, this bug is not only for empty values. ```css a[href*="abc"], /* this line only is reported */ a[href*="abc"], a[href*="abc"], a[href*=""] { color: #fd0; } ``` See the...
> Is the code for the rule in [/lib/rules/no-duplicate-selectors/index.mjs](https://github.com/stylelint/stylelint/blob/a5965a09b557fd4a5420a6b48f1c1353ecf83aa2/lib/rules/no-duplicate-selectors/index.mjs)? Yes. > TBH, my writing style is considerably different for me to contribute to the code. Regarding coding style, we keep...