mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
ed3f062a6a
Fix eslint-task. Grunt doesn't recognize es6 files
70 lines
1.6 KiB
JavaScript
70 lines
1.6 KiB
JavaScript
'use strict';
|
|
var chalk = require('chalk');
|
|
var eslint = require('eslint');
|
|
|
|
module.exports = function (grunt) {
|
|
grunt.registerMultiTask('eslint', 'Validate files with ESLint', function () {
|
|
var opts = this.options({
|
|
outputFile: false,
|
|
quiet: false,
|
|
maxWarnings: -1
|
|
});
|
|
|
|
// legacy
|
|
// TODO: remove in the future
|
|
if (opts.config) {
|
|
opts.configFile = opts.config;
|
|
}
|
|
if (opts.rulesdir) {
|
|
opts.rulePaths = opts.rulesdir;
|
|
}
|
|
|
|
if (this.filesSrc.length === 0) {
|
|
grunt.log.writeln(chalk.magenta('Could not find any files to validate.'));
|
|
return true;
|
|
}
|
|
|
|
var formatter = eslint.CLIEngine.getFormatter(opts.format);
|
|
|
|
if (!formatter) {
|
|
grunt.warn('Could not find formatter ' + opts.format + '\'.');
|
|
return false;
|
|
}
|
|
|
|
var engine = new eslint.CLIEngine(opts);
|
|
|
|
var report;
|
|
try {
|
|
report = engine.executeOnFiles(this.filesSrc);
|
|
} catch (err) {
|
|
grunt.warn(err);
|
|
return false;
|
|
}
|
|
|
|
if (opts.fix) {
|
|
eslint.CLIEngine.outputFixes(report);
|
|
}
|
|
|
|
var results = report.results;
|
|
|
|
if (opts.quiet) {
|
|
results = eslint.CLIEngine.getErrorResults(results);
|
|
}
|
|
|
|
var output = formatter(results);
|
|
|
|
if (opts.outputFile) {
|
|
grunt.file.write(opts.outputFile, output);
|
|
} else if (output) {
|
|
console.log(output);
|
|
}
|
|
|
|
var tooManyWarnings = opts.maxWarnings >= 0 && report.warningCount > opts.maxWarnings;
|
|
|
|
if (report.errorCount === 0 && tooManyWarnings) {
|
|
grunt.warn('ESLint found too many warnings (maximum:' + opts.maxWarnings + ')');
|
|
}
|
|
|
|
return report.errorCount === 0;
|
|
});
|
|
};
|