Skip to content

Commit a4c8cf6

Browse files
committed
refactor: Fix new ESLint issues
1 parent 3e1cbbd commit a4c8cf6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/formatter/json.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ export class Json {
44
format(lintResults: LintResult[], showDetails: boolean, _quiet = false) {
55
const jsonFormattedResults: Pick<
66
LintResult,
7-
"filePath"
8-
| "messages"
9-
| "errorCount"
10-
| "warningCount"
11-
| "fatalErrorCount"
7+
"filePath" |
8+
"messages" |
9+
"errorCount" |
10+
"warningCount" |
11+
"fatalErrorCount"
1212
// excluded by default: "coverageInfo"
1313
>[] = [];
1414
lintResults.forEach((oLintedFile) => {

0 commit comments

Comments
 (0)