mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
beae37a26c
Summary: Almost there ... Test Plan: ... run the build Reviewers: evan Reviewed By: evan Differential Revision: https://phab.nylas.com/D3597
72 lines
1.7 KiB
JavaScript
72 lines
1.7 KiB
JavaScript
const chalk = require('chalk');
|
|
const eslint = require('eslint');
|
|
|
|
module.exports = (grunt) => {
|
|
grunt.config.merge({
|
|
eslint: {
|
|
options: {
|
|
ignore: false,
|
|
configFile: 'build/config/eslint.json',
|
|
},
|
|
target: grunt.config('source:es6'),
|
|
},
|
|
|
|
eslintFixer: {
|
|
src: grunt.config('source:es6'),
|
|
},
|
|
});
|
|
|
|
grunt.registerMultiTask('eslint', 'Validate files with ESLint', function task() {
|
|
const opts = this.options({
|
|
outputFile: false,
|
|
quiet: false,
|
|
maxWarnings: -1,
|
|
});
|
|
|
|
if (this.filesSrc.length === 0) {
|
|
grunt.log.writeln(chalk.magenta('Could not find any files to validate.'));
|
|
return true;
|
|
}
|
|
|
|
const formatter = eslint.CLIEngine.getFormatter(opts.format);
|
|
|
|
if (!formatter) {
|
|
grunt.warn(`Could not find formatter ${opts.format}.`);
|
|
return false;
|
|
}
|
|
|
|
const engine = new eslint.CLIEngine(opts);
|
|
|
|
let report = null;
|
|
try {
|
|
report = engine.executeOnFiles(this.filesSrc);
|
|
} catch (err) {
|
|
grunt.warn(err);
|
|
return false;
|
|
}
|
|
|
|
if (opts.fix) {
|
|
eslint.CLIEngine.outputFixes(report);
|
|
}
|
|
|
|
let results = report.results;
|
|
if (opts.quiet) {
|
|
results = eslint.CLIEngine.getErrorResults(results);
|
|
}
|
|
|
|
const output = formatter(results);
|
|
|
|
if (opts.outputFile) {
|
|
grunt.file.write(opts.outputFile, output);
|
|
} else if (output) {
|
|
console.log(output);
|
|
}
|
|
|
|
const 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;
|
|
});
|
|
};
|