Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I disable JSCS in Web Essentials for Visual Studio 2013?

Tags:

How might I disable JSCS in the latest version of Web Essentials for Visual Studio 2013?

I was unable to find a relevant option in the menu.

I tried setting the JSCS configuration to ignore all files. This caused it to occasionally generate messages that wouldn't leave my Error List panel until I cleaned the solution.

like image 975
Keen Avatar asked Mar 12 '14 20:03

Keen


1 Answers

I've found this settings file seems to quiet it down quite a bit. You can find this in Web Essentials > Edit Global JSCS settings.

{     "requireCurlyBraces": ["if"],      "excludeFiles": ["**"],     "validateJSDoc": {         "checkParamNames": true,         "requireParamTypes": true     } } 

It essentially disables JSCS while keeping JSHint open. Hopefully that helps.

like image 158
Bryan Rayner Avatar answered Sep 22 '22 07:09

Bryan Rayner