File tree 4 files changed +173
-158
lines changed 4 files changed +173
-158
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ module.exports = {
39
39
'node/no-unsupported-features/es-builtins' : 'error' ,
40
40
'import/no-commonjs' : 'error' ,
41
41
'import/no-unused-modules' : 'error' ,
42
+ 'import/no-extraneous-dependencies' : 'error' ,
42
43
} ,
43
44
overrides : [
44
45
{
Original file line number Diff line number Diff line change 37
37
"typecheck" : " tsc -p ."
38
38
},
39
39
"dependencies" : {
40
- "@typescript-eslint/experimental-utils" : " ^1.13.0" ,
41
- "typescript" : " ^3.5.3"
40
+ "@typescript-eslint/experimental-utils" : " ^1.13.0"
42
41
},
43
42
"devDependencies" : {
44
43
"@babel/cli" : " ^7.4.4" ,
66
65
"lint-staged" : " ^8.0.4" ,
67
66
"prettier" : " ^1.10.2" ,
68
67
"prettylint" : " ^1.0.0" ,
69
- "rimraf" : " ^2.6.3"
68
+ "rimraf" : " ^2.6.3" ,
69
+ "typescript" : " ^3.5.3"
70
70
},
71
71
"prettier" : {
72
72
"proseWrap" : " always" ,
Original file line number Diff line number Diff line change 1
- import { AST_NODE_TYPES , TSESTree } from '@typescript-eslint/typescript-estree' ;
1
+ import {
2
+ AST_NODE_TYPES ,
3
+ TSESTree ,
4
+ } from '@typescript-eslint/experimental-utils' ;
2
5
import {
3
6
FunctionExpression ,
4
7
JestFunctionCallExpression ,
You can’t perform that action at this time.
0 commit comments