JSHint override without observing.
[Exit]: [L59: C38] W117: "warning" not defined.
[Exit]: / * jshint -W117 * / alert ("failed to load browse data .."); / * jshint + W117 * /
- Actual line of code:
$scope.example.$get(
function(data){
$scope.data =
}, function(message){
alert("failed..");
});
I use them for other warnings, but W117 seems to be ignored.
source
share