Jshint vscode config

I want to exclude some directives in my project and configure jshint vscode in setting.json

{
    "jslint.exclude": "C:\\Users\\Administrator\\Desktop\\tmp"
}

      

However, the object is checked, so what is the key of the object?

+3


source to share


1 answer


jslint.exclude

displays paths (which can contain globes) before true

or false

to indicate whether the path should be excluded



"jslint.exclude": {
     "C:\\Users\\Administrator\\Desktop\\tmp": true,
     "**\\*.es6": true
}

      

+2


source







All Articles