Richard Hallows
Richard Hallows
@BPScott Thanks for the detailed write-up! I'm going to label as a bug and help wanted. As you said, other tools can write files in these circumstances so it makes...
@jakes-space Try removing `"stylelint.config": null,` from your VSCode settings, please.
@kizu I believe the bulk of the work was done in https://github.com/stylelint/vscode-stylelint/pull/358. There hasn't been the time to get it over the finish line, though. I think there are a...
I suggest starting with support for just standard CSS constructs. In stylelint we do some gnarly gymnastics to identify and _ignore_ non-standard constructs (see the [`isStandardSyntax*`](https://github.com/stylelint/stylelint/blob/master/lib/utils/) utils e.g. [`isStandardSyntaxRule`](https://github.com/stylelint/stylelint/blob/master/lib/utils/isStandardSyntaxRule.js)). I...
> As @benfrain pointed out, leave it to AutoPrefixer. Yes, it seems odd to add a special case to something that most people won't see. Especially when little is gained...
It's fantastic to see these issues broken out. It makes it so much more digestible :) If the intent is to follow prettier's [implementation](https://github.com/prettier/prettier#technical-details), then [it looks like](https://youtu.be/0Q4kUNx85_4) your suggestions...
> Is it better to wrap parens around the whole thing, along these lines? I believe parens [only surround _media features_](https://www.w3.org/TR/mediaqueries-4/#mq-syntax) and not _media queries_. This is what `stylelint-config-standard` currently...
FYI, `stylelint-config-standard` enforces lower and short. One thing to bare in mind is that, I believe, this involves transforming the values of a node within the AST. This is [a...
> perfectionist doesn't need to draw the same line, but I think it's worth thinking about where a line might be drawn. I've thought so more about this and [I've...
> If we can agree on this with maybe some exceptions, we might be able to save a lot of needless discussion. Yes, some legwork went into digging for the...