This post shows how to enable eslint for specific files.
I would like to take a similar approach with stylelint
.
This config works to ignore all of my css files in that directory:
"stylelint.configOverrides": {
"ignoreFiles": "assets/styles/**"
}
Is there a way to include style linting on one (or more files) in my assets/styles
directory?
Thanks!