We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e1cbbd commit a4c8cf6Copy full SHA for a4c8cf6
src/formatter/json.ts
@@ -4,11 +4,11 @@ export class Json {
4
format(lintResults: LintResult[], showDetails: boolean, _quiet = false) {
5
const jsonFormattedResults: Pick<
6
LintResult,
7
- "filePath"
8
- | "messages"
9
- | "errorCount"
10
- | "warningCount"
11
- | "fatalErrorCount"
+ "filePath" |
+ "messages" |
+ "errorCount" |
+ "warningCount" |
+ "fatalErrorCount"
12
// excluded by default: "coverageInfo"
13
>[] = [];
14
lintResults.forEach((oLintedFile) => {
0 commit comments