File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ for (const proto of testProtos("tcp")) {
65
65
const port = parseInt ( address . split ( ":" ) . pop ( ) ! , 10 )
66
66
67
67
const server = await new Promise < Server > ( resolve => {
68
- const http = createServer ( ( req , res ) => {
68
+ const http = createServer ( ( _req , res ) => {
69
69
res . writeHead ( 200 , {
70
70
"Content-Type" : "text/plain" ,
71
71
"Content-Length" : 12 ,
Original file line number Diff line number Diff line change 14
14
"noImplicitAny" : true ,
15
15
"noImplicitReturns" : true ,
16
16
"noImplicitThis" : true ,
17
- "noUnusedLocals" : true ,
18
- "noUnusedParameters" : true ,
17
+ // eslint already warns about:
18
+ "noUnusedLocals" : false ,
19
+ "noUnusedParameters" : false ,
19
20
"incremental" : true ,
20
21
"sourceMap" : true ,
21
22
"lib" : [
You can’t perform that action at this time.
0 commit comments