File tree Expand file tree Collapse file tree 4 files changed +173
-158
lines changed Expand file tree Collapse file tree 4 files changed +173
-158
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ module.exports = {
3939 'node/no-unsupported-features/es-builtins' : 'error' ,
4040 'import/no-commonjs' : 'error' ,
4141 'import/no-unused-modules' : 'error' ,
42+ 'import/no-extraneous-dependencies' : 'error' ,
4243 } ,
4344 overrides : [
4445 {
Original file line number Diff line number Diff line change 3737 "typecheck" : " tsc -p ."
3838 },
3939 "dependencies" : {
40- "@typescript-eslint/experimental-utils" : " ^1.13.0" ,
41- "typescript" : " ^3.5.3"
40+ "@typescript-eslint/experimental-utils" : " ^1.13.0"
4241 },
4342 "devDependencies" : {
4443 "@babel/cli" : " ^7.4.4" ,
6665 "lint-staged" : " ^8.0.4" ,
6766 "prettier" : " ^1.10.2" ,
6867 "prettylint" : " ^1.0.0" ,
69- "rimraf" : " ^2.6.3"
68+ "rimraf" : " ^2.6.3" ,
69+ "typescript" : " ^3.5.3"
7070 },
7171 "prettier" : {
7272 "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' ;
25import {
36 FunctionExpression ,
47 JestFunctionCallExpression ,
You can’t perform that action at this time.
0 commit comments