I use intellisense in js files through visual studio 2010 at design time
For example in my .js files they will typically start with
///<reference name="MicrosoftAjax.js"/>
///<reference name="MicrosoftAjaxWebForms.js"/>
/// <reference path="jQuery.js" />
/// <reference path="jQueryUI.js" />
And might include a service reference
/// <reference path="../Service/sessionTick.asmx" />
Code within this file will then reference the jQuery global "$" and similarly the APSAjax "sys" object and any other objects accessible through the includes such as the document object etc.
If the intellisense engine can work out that the objects are available through the aforementioned "silent" includes, why cant chirpy realise that it doesn't need to report hundreds of warnings about objects it thinks are not available but really are?
eg chiroy reports to me that
-
the silent includes are "bad options: 'regex'
-
the Sys references to the ajax object is "'Sys' is not defined"
-
the jQuery instance is "'$' is not defined"
and so on and so forth
Is there any way to configure this to not report on these warnings so that i can see the woods for the trees because there are valid warnings buried amongst these invalid warnings