Commit 51e830f 1 parent 488bf41 commit 51e830f Copy full SHA for 51e830f
File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import js from "@eslint/js";
2
2
import stylistic from "@stylistic/eslint-plugin-ts" ;
3
3
import tsParser from "@typescript-eslint/parser" ;
4
4
import love from "eslint-config-love" ;
5
+ import commentsPlugin from "eslint-plugin-eslint-comments" ;
5
6
import importPlugin from "eslint-plugin-import" ;
6
7
import nPlugin from "eslint-plugin-n" ;
7
8
import perfectionist from "eslint-plugin-perfectionist" ;
@@ -136,6 +137,7 @@ export default tseslint.config(
136
137
"@stylistic/ts" : stylistic ,
137
138
import : importPlugin ,
138
139
n : nPlugin ,
140
+ "eslint-comments" : commentsPlugin ,
139
141
promise,
140
142
perfectionist,
141
143
} ,
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export class OutputParser {
31
31
}
32
32
33
33
public tryParseClippyLine ( line : string ) : void {
34
- // eslint-disable-next-line @typescript-eslint/init-declarations
34
+ // eslint-disable-next-line @typescript-eslint/init-declarations -- return if we don't initialize it
35
35
let contents : MaybeCargoMessage ;
36
36
try {
37
37
contents = JSON . parse ( line ) as MaybeCargoMessage ;
Original file line number Diff line number Diff line change 1
- // eslint-disable-next-line unicorn/no-empty-file
1
+ /* eslint-disable unicorn/no-empty-file -- Nothing here yet */
You can’t perform that action at this time.
0 commit comments