-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy patheslint-ci-check.js
47 lines (45 loc) · 1.33 KB
/
eslint-ci-check.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// code from https://www.jianshu.com/p/072a96633479
/* eslint-disable */
const exec = require('child_process').exec;
const CLIEngine = require('eslint').CLIEngine;
const cli = new CLIEngine({});
function getErrorLevel(number) {
switch (number) {
case 2:
return 'error';
case 1:
return 'warn';
default:
}
return 'undefined';
}
let pass = 0;
exec('git diff --cached --name-only| grep .js$', (error, stdout) => {
if (stdout.length) {
const array = stdout.split('\n');
array.pop();
const results = cli.executeOnFiles(array).results;
let errorCount = 0;
let warningCount = 0;
results.forEach((result) => {
errorCount += result.errorCount;
warningCount += result.warningCount;
if (result.messages.length > 0) {
console.log('\n');
console.log(result.filePath);
result.messages.forEach((obj) => {
const level = getErrorLevel(obj.severity);
console.log(` ${obj.line}:${obj.column} ${level} ${obj.message} ${obj.ruleId}`);
pass = 1;
});
}
});
if (warningCount > 0 || errorCount > 0) {
console.log(`\n ${errorCount + warningCount} problems (${errorCount} ${'errors'} ${warningCount} warnings)`);
}
process.exit(pass);
}
if (error !== null) {
console.log(`exec error: ${error}`);
}
});