Richard Hallows
Richard Hallows
> how would you expect a stylelint plugin to be exporting multiple rules? @danieldelcore I believe [stylelint-scss](https://www.npmjs.com/package/stylelint-scss) is the most popular plugin pack and exports its multiple rules [like so](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/index.js):...
> Ok this mirrored exactly what we had so not sure what's at play here It does sound like something else is amiss here. Can you put together a minimal...
In light of https://github.com/stylelint/vscode-stylelint/pull/752#issuecomment-3581076127, maybe it doesn't need to be a major release, if we can ensure backwards compatibility when arriving an ESM version of Stylelint.
@adalinesimonian Thank you for the [`v2-review-restack`](https://github.com/stylelint/vscode-stylelint/commits/v2-review-restack/) branch. It helped seeing the logical chunks separate. From what I remember of design patterns from my Comp Sci days, it looks to be...
> The ecosystem has matured enough that some of these changes are now more possible than they were when I first tried to tackle it. So far, I have per-workspace...
We've been focused on the [`17.0.0` task list](https://github.com/stylelint/stylelint/issues/7396#issue-2035832595), which is now complete, and I'm returning to the extension. It'd be ideal if we could announce the prerelease version of the...
My bad, I could've been clearer. I meant for v1 of the extension. We patched support into v1 for `17.0.0` dropping the `output` property in https://github.com/stylelint/vscode-stylelint/pull/752, and I wonder if...
Thanks for the extra info about the difficulties supporting an ESM-only 17.0.0 in v1. > Given the constraints, I agree it makes sense to ship v2 as stable... I'm comfortable...
Thanks for the insightful breakdown. I agree with adding a secondary option to make the rule more permissive for: ```css a { color: red; @media print { color: black; }...
As there are no objections. I've labelled the rule as ready to implement. We can use `redundant` rather than `needless` to match our [existing rules](https://stylelint.io/user-guide/rules#redundant) - Name: `block-no-redundant-nesting` - Description:...