yoastseo-dep
Version:
Yoast clientside page analysis
23 lines (21 loc) • 423 B
JavaScript
// See https://github.com/sindresorhus/grunt-eslint
module.exports = function( grunt ) {
const fix = grunt.option( "fix" ) || false;
return {
target: {
src: [ "<%= files.js %>", "<%= files.jsDontLint %>" ],
options: {
maxWarnings: 11,
fix: fix,
},
},
tests: {
src: [ "<%= files.jsTests %>" ],
options: {
configFile: ".eslintrc-tests",
maxWarnings: 6,
fix: fix,
},
},
};
};