"source.fixAll.stylelint": true. for stylelint not work

123 Views Asked by At

this is my code in my settings.json this code can't Autofix fails , i don't know why?

"editor.codeActionsOnSave": {
    "source.fixAll.stylelint": true
  },

Manually enter valid permutations

enter image description here

settings.json enter image description here

package-lock.json enter image description here How to make changes so that they can be automatically repaired after saving?

1

There are 1 best solutions below

0
On

The GitHub readme of the vscode-stylelint extension suggests:

"editor.codeActionsOnSave": {
    "source.fixAll.stylelint": "explicit"
  }