summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tsconfig.json2
-rw-r--r--tslint.json1
2 files changed, 2 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 9fa05af4e7..0b7f78c684 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -3,6 +3,8 @@
"noEmitOnError": false,
"noImplicitAny": false,
"noImplicitReturns": true,
+ "noUnusedParameters": true,
+ "noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"experimentalDecorators": true,
"declaration": false,
diff --git a/tslint.json b/tslint.json
index 3e343c482a..ad1a97de08 100644
--- a/tslint.json
+++ b/tslint.json
@@ -54,7 +54,6 @@
"no-unsafe-finally": true,
"no-unused-expression": true,
"no-unused-new": true,
- "no-unused-variable": true,
"no-use-before-declare": true,
"no-var-keyword": true,
"radix": true,