Skip to content

Commit

Permalink
build: disable rules requiring type information
Browse files Browse the repository at this point in the history
Rules which require type information are too slow.
Dislable them with removing parserOptions > project until the
performance issue is fixed.

Also @see typescript-eslint/typescript-eslint#389
  • Loading branch information
teppeis committed Apr 7, 2019
1 parent 19dfae7 commit 261943a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .eslintrc.json
Expand Up @@ -8,6 +8,11 @@
],
"rules": {
"require-await": 0,
"@typescript-eslint/no-object-literal-type-assertion": 0
"@typescript-eslint/no-object-literal-type-assertion": 0,
"@typescript-eslint/no-unnecessary-type-assertion": 0,
"@typescript-eslint/restrict-plus-operands": 0
},
"parserOptions": {
"project": null
}
}

0 comments on commit 261943a

Please sign in to comment.