Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit e347e78

Browse files
committed
ci: untie tsconfig a bit, but tighten tslint to cover
1 parent 4cc031f commit e347e78

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"noFallthroughCasesInSwitch": true,
1010
"noImplicitAny": true,
1111
"noImplicitThis": true,
12-
"noUnusedParameters": true,
13-
"noUnusedLocals": true,
12+
"noUnusedParameters": false, // The linter is used for these.
13+
"noUnusedLocals": false, // The linter is used for these.
1414
"outDir": "./dist",
1515
"rootDir": ".",
1616
"skipDefaultLibCheck": true,

tslint.json

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"no-internal-module": true,
4747
"no-trailing-whitespace": true,
4848
"no-unused-expression": true,
49+
"no-unused-variable": true,
4950
"no-var-keyword": true,
5051
"one-line": [
5152
true,

0 commit comments

Comments
 (0)