-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathlint-formatter.ts
79 lines (71 loc) · 2.46 KB
/
lint-formatter.ts
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// SPDX-License-Identifier: Apache-2.0
import * as assert from 'node:assert';
import {existsSync} from 'node:fs';
import {readFileSync} from 'node:fs';
import path from 'node:path';
type Violation = {
lineNumber: string;
severity: string;
message: string;
rule: string;
sourceFile: string;
};
class LintFormatter {
public constructor(private readonly inputFile: string) {
if (!existsSync(inputFile)) {
assert.fail(`Input file does not exist: ${inputFile}`);
}
}
public transformOutput(): void {
const input: Buffer = readFileSync(this.inputFile);
const ruleToViolationMap: Map<string, Violation[]> = new Map();
let currentFile: string = '';
for (const line of input.toString().split('\n')) {
const tokens: string[] = line.trim().split(/\s+/);
if (tokens.length === 0) {
continue;
}
if (line.includes('errors') && line.includes('warnings')) {
continue;
}
if (tokens[0].includes(path.sep) && tokens[0].endsWith('.ts')) {
currentFile = tokens[0];
continue;
}
const lineNumber: string = tokens[0];
const severity: string = tokens[1];
const message: string = tokens.slice(2, -1).join(' ');
const rule: string = tokens.at(-1);
const violationArray: Violation[] | undefined = ruleToViolationMap.get(rule);
const violation: Violation = {
lineNumber,
severity,
message,
rule,
sourceFile: currentFile,
};
if (violationArray === undefined) {
ruleToViolationMap.set(rule, [violation]);
} else {
violationArray.push(violation);
ruleToViolationMap.set(rule, violationArray);
}
}
for (const [rule, violations] of ruleToViolationMap.entries()) {
console.log(`Rule: ${rule}, Count: ${violations.length}`);
console.log('----------------------------------------');
let fileCount: number = 1;
for (const violation of violations) {
console.log(
`${fileCount++}:${violation.severity}: ${violation.sourceFile}:${violation.lineNumber}: ${violation.message}`,
);
}
console.log('----------------------------------------');
}
for (const [rule, violations] of ruleToViolationMap.entries()) {
console.log(`Count: ${violations.length}, Severity: ${violations[0].severity}, Rule: ${rule}, `);
}
}
}
const lintFormatter: LintFormatter = new LintFormatter(process.argv[2]);
lintFormatter.transformOutput();