Masafumi Koba
Masafumi Koba
Just to confirm, does this problem happen without the config file (`.stylelintrc.cjs`)?
It's strange. I cannot reproduce this problem for now with the 2 files and `node_modules`. 🤔
> So I think VS Code plugin and stylelint v16 are incompatible. It may be correct. The main branch hasn't tested v16 yet: https://github.com/stylelint/vscode-stylelint/blob/39e7c76070bb5cfe678ace65de3a30d69e092196/package.json#L249
I think there is no problem if Stylelint and the extension are configured properly. The following files are in my environment: `stylelint.config.mjs`: ```js export default { customSyntax: "postcss-scss", rules: {...
Hum, I cannot reproduce unintentionally inserted comments... 🤔 I wonder if `.vscode/settings.json` is different. Is your `.vscode/settings.json` the same as mine? ⬇️ ```json { "stylelint.validate": ["css", "scss"], "editor.codeActionsOnSave": { "source.fixAll.stylelint":...
The behavior doesn't seem to change between `true` and `explicit`. See https://code.visualstudio.com/updates/v1_85#_code-actions-on-save-and-auto
FYI, I've just opened PR #492 to reduce confusion in README.
@dan2kx Thanks for the report. Can you share a reproducible example on our [demo site](https://stylelint.io/demo/)? A permalink with your demo should be sharable, e.g. `https://stylelint.io/demo/#N4Igxg9...`.
stylelint/vscode-stylelint#489 looks like the same problem.
@dan2kx Thanks for the info. I can reproduce the problem now. My files are below: `package.json` (need to run `npm install`): ```json { "dependencies": { "stylelint": "^16.1.0", "stylelint-config-sass-guidelines": "^11.0.0", "stylelint-config-standard-scss":...