Skip to content

Commit ae87cd2

Browse files
author
Andy
authored
Enable 'no-implicit-dependencies' lint rule (microsoft#19716)
1 parent 1d7f449 commit ae87cd2

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,12 @@
7474
"q": "latest",
7575
"run-sequence": "latest",
7676
"sorcery": "latest",
77+
"source-map-support": "latest",
7778
"through2": "latest",
7879
"travis-fold": "latest",
7980
"ts-node": "latest",
8081
"tslint": "latest",
82+
"vinyl": "latest",
8183
"colors": "latest",
8284
"typescript": "next"
8385
},

tslint.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@
7272
"check-type"
7373
],
7474

75+
// Config different from tslint:latest
76+
"no-implicit-dependencies": [true, "dev"],
77+
7578
// TODO
7679
"arrow-parens": false, // [true, "ban-single-arg-parens"]
7780
"arrow-return-shorthand": false,
@@ -85,7 +88,6 @@
8588
"no-empty": false,
8689
"no-empty-interface": false,
8790
"no-eval": false,
88-
"no-implicit-dependencies": false,
8991
"no-invalid-template-strings": false,
9092
"no-object-literal-type-assertion": false,
9193
"no-shadowed-variable": false,

0 commit comments

Comments
 (0)