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

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -