How do you use JsHint “.jshintrc” file with Visual Studio 2013 Web Essentials extension?
I have installed the "Web Essentials" extension into Visual Studio 2013. I am now getting JSHint warnings appearing in my "Error List" window under the Messages section. However, it is complaining about some global variables that it thinks are not defined. From what I read, you can use JSHint's .jshintrc file to list global variables so it will stop complaining about them. I want to have it set up as follows. (so that it will stop complaining about "ko"... which is a KnockoutJs global variable.) "globals": { "$": false, "jQuery": false, "ko": false } How and where are you supposed to create