I want to exclude some directives in my project and configure jshint vscode in setting.json
setting.json
{ "jslint.exclude": "C:\\Users\\Administrator\\Desktop\\tmp" }
However, the object is checked, so what is the key of the object?
jslint.exclude displays paths (which can contain globes) before true or false to indicate whether the path should be excluded
jslint.exclude
true
false
"jslint.exclude": { "C:\\Users\\Administrator\\Desktop\\tmp": true, "**\\*.es6": true }