Enable 'no-implicit-dependencies' lint rule (#19716)

This commit is contained in:
Andy 2017-11-03 15:08:19 -07:00 committed by GitHub
parent 1d7f449a87
commit ae87cd2fa9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -74,10 +74,12 @@
"q": "latest",
"run-sequence": "latest",
"sorcery": "latest",
"source-map-support": "latest",
"through2": "latest",
"travis-fold": "latest",
"ts-node": "latest",
"tslint": "latest",
"vinyl": "latest",
"colors": "latest",
"typescript": "next"
},

View file

@ -72,6 +72,9 @@
"check-type"
],
// Config different from tslint:latest
"no-implicit-dependencies": [true, "dev"],
// TODO
"arrow-parens": false, // [true, "ban-single-arg-parens"]
"arrow-return-shorthand": false,
@ -85,7 +88,6 @@
"no-empty": false,
"no-empty-interface": false,
"no-eval": false,
"no-implicit-dependencies": false,
"no-invalid-template-strings": false,
"no-object-literal-type-assertion": false,
"no-shadowed-variable": false,