switch from jshint to eslint

This commit is contained in:
spalger
2016-01-08 14:18:35 -07:00
parent 7d5b0395e6
commit d0d55f8f3e
18 changed files with 16 additions and 124 deletions

View File

@ -39,7 +39,7 @@ var taskOut; // task output stream
task('NODE_UNIT', true, function () {
if (!JENKINS) {
return grunt('jshint', 'mochacov:ci_unit');
return grunt('mochacov:ci_unit');
}
return grunt('mochacov:jenkins_unit');
@ -319,4 +319,4 @@ function grunt(/* args... */) {
GRUNT,
_.toArray(arguments)
);
}
}

View File

@ -186,8 +186,6 @@ module.exports = [
{
version: '>=1.6.0',
/* jshint ignore:start */
// strange indentation makes pretty api files
clientActionModifier:
function (spec) {
@ -201,7 +199,5 @@ function (spec) {
});
}
/* jshint ignore:end */
}
];
];

View File

@ -1,5 +1,3 @@
/* jshint maxlen: false */
var ca = require('../client_action').<%
if (!clientActionModifier) print('factory');
@ -28,4 +26,4 @@ _.each(proxies, function (action) {%>
<%= partials.client_action_proxy(action) %><%
});
%>
%>