aboutsummaryrefslogtreecommitdiff
path: root/editors/code/tslint.json
diff options
context:
space:
mode:
authorTetsuharu OHZEKI <[email protected]>2019-12-11 15:41:16 +0000
committerTetsuharu OHZEKI <[email protected]>2019-12-11 15:56:29 +0000
commitb21bb44c8dcd43e9e42ef7e3d752dd550e6505ad (patch)
treebb800455698b200c4fdb7fdfeda736eb91c06663 /editors/code/tslint.json
parent143484922284b2b3177393706ba27c76a3113292 (diff)
Enable noUnusedParameters option for vscode extension
Diffstat (limited to 'editors/code/tslint.json')
-rw-r--r--editors/code/tslint.json4
1 files changed, 3 insertions, 1 deletions
diff --git a/editors/code/tslint.json b/editors/code/tslint.json
index bdeb4895e..b69c5574d 100644
--- a/editors/code/tslint.json
+++ b/editors/code/tslint.json
@@ -4,6 +4,8 @@
4 "rules": { 4 "rules": {
5 "quotemark": [true, "single"], 5 "quotemark": [true, "single"],
6 "interface-name": false, 6 "interface-name": false,
7 "object-literal-sort-keys": false 7 "object-literal-sort-keys": false,
8 // Allow `_bar` to sort with tsc's `noUnusedParameters` option
9 "variable-name": [true, "allow-leading-underscore"]
8 } 10 }
9} 11}