File tree Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ async function logout() {
307
307
}
308
308
309
309
// Parsing command line arguments
310
- yargs ( hideBin ( process . argv ) )
310
+ yargs ( hideBin ( process . argv ) ) // eslint-disable-line @typescript-eslint/no-unused-expressions
311
311
. command ( {
312
312
command : 'authorise' ,
313
313
describe : 'Authorise git push by ID' ,
@@ -339,7 +339,7 @@ yargs(hideBin(process.argv))
339
339
. command ( {
340
340
command : 'config' ,
341
341
describe : 'Print configuration' ,
342
- handler ( argv ) {
342
+ handler ( ) {
343
343
console . log ( `GitProxy URL: ${ baseUrl } ` ) ;
344
344
} ,
345
345
} )
@@ -365,7 +365,7 @@ yargs(hideBin(process.argv))
365
365
. command ( {
366
366
command : 'logout' ,
367
367
describe : 'Log out' ,
368
- handler ( argv ) {
368
+ handler ( ) {
369
369
logout ( ) ;
370
370
} ,
371
371
} )
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "target" : " ES6" ,
4
+ "lib" : [" DOM" , " ESNext" ],
5
+ "allowJs" : true ,
6
+ "checkJs" : false ,
7
+ "jsx" : " react-jsx" ,
8
+ "moduleResolution" : " Node" ,
9
+ "strict" : true ,
10
+ "noEmit" : true ,
11
+ "skipLibCheck" : true ,
12
+ "isolatedModules" : true ,
13
+ "module" : " CommonJS" ,
14
+ "esModuleInterop" : true ,
15
+ "allowSyntheticDefaultImports" : true
16
+ },
17
+ "include" : [" index.js" , " test" , " coverage" ]
18
+ }
You can’t perform that action at this time.
0 commit comments