bjankord / stylelint-config-sass-guidelines

⚙ A stylelint config inspired by https://sass-guidelin.es/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is vscode autofix supported? Getting error command 'stylelint.executeAutofix' not found

JackHowa opened this issue · comments

Was directed to check by the vs code extension here? stylelint/vscode-stylelint#101

I'm curious if there's integration with stylelint vscode extension with sass guidelines.

Thanks so much for your work. This has really helped our codebase

I've just checked and everything seems to work fine. Do you have proper settings in VScode?

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

scsg

Also make sure you have stylelint package installed.

woah, yeah. working as expected. thank you, I was missing "[scss]": {. Appreciate it @SharakPL