csslint - How to exclude node_modules from buildin VS Code CSS linter -
vs code reports css linter warning files in node_modules
. how can disable checks in node_modules
? jsconfig.json
file (if matters):
{ "compileroptions": { "target": "es6", "module": "commonjs" }, "exclude": [ "node_modules" ], "include": [ ] }
Comments
Post a Comment