Skip to content

Commit

Permalink
fix: import TS utils from correct package
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Jul 22, 2019
1 parent f64441b commit 7f1867b
Show file tree
Hide file tree
Showing 4 changed files with 173 additions and 158 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Expand Up @@ -39,6 +39,7 @@ module.exports = {
'node/no-unsupported-features/es-builtins': 'error',
'import/no-commonjs': 'error',
'import/no-unused-modules': 'error',
'import/no-extraneous-dependencies': 'error',
},
overrides: [
{
Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -37,8 +37,7 @@
"typecheck": "tsc -p ."
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^1.13.0",
"typescript": "^3.5.3"
"@typescript-eslint/experimental-utils": "^1.13.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
Expand Down Expand Up @@ -66,7 +65,8 @@
"lint-staged": "^8.0.4",
"prettier": "^1.10.2",
"prettylint": "^1.0.0",
"rimraf": "^2.6.3"
"rimraf": "^2.6.3",
"typescript": "^3.5.3"
},
"prettier": {
"proseWrap": "always",
Expand Down
5 changes: 4 additions & 1 deletion src/rules/valid-describe.ts
@@ -1,4 +1,7 @@
import { AST_NODE_TYPES, TSESTree } from '@typescript-eslint/typescript-estree';
import {
AST_NODE_TYPES,
TSESTree,
} from '@typescript-eslint/experimental-utils';
import {
FunctionExpression,
JestFunctionCallExpression,
Expand Down

0 comments on commit 7f1867b

Please sign in to comment.