Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS Code style-lint ignore directories

Is it possible to ignore my CSS path, beacuse I only use stylelint for SCSS validation?

e.g. - I have the following structure:

assets/
    css/
    scss/

How can I disable the css/ folder from being indexed, trough the settings.json file of VSCode?

I found this in the docs, but I don't know how to implement it in VSCode.

like image 835
Tanasos Avatar asked Feb 06 '17 14:02

Tanasos


2 Answers

If you're using the VS Code stylelint extension, you can specify ignore paths via the stylelint.configOverrides setting.

Add the following to your VS Code settings.json file:

"stylelint.configOverrides": {
    "ignoreFiles": "assets/css/**"
}

Alternatively you can add a .stylelintignore file to the root folder of your project and add the ignore paths there:

assets/css/**
like image 116
tekniskt Avatar answered Nov 15 '22 15:11

tekniskt


I'm using [email protected] with [email protected], and for me the .stylelintignore file is not being respected. If i use the CLI it is respected but the vscode plugin does not seem to do this correctly.

like image 27
Jack Russell Avatar answered Nov 15 '22 14:11

Jack Russell