I am using JSLint to check the quality of my javascript files.
For js code starting like this:
var clientAuthHeader = context.proxyRequest.headers['X-AR-Authorization']; context.targetRequest.headers.Authorization = "Bearer " + clientAuthHeader;
I am seeing Undeclared 'context'. (undeclared_a).
Is there a way to allow this in JSLint to do static code analysis of my code or if i declare context will it effect how APIGEE runs the js code?