Skip to content

Commit

Permalink
fix(no-useless-constructor): correct no-unnecessary-constructor to no…
Browse files Browse the repository at this point in the history
…-useless-constructor
  • Loading branch information
djcsdy committed Sep 15, 2020
1 parent 86ae66d commit 6ed3731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ const config: Linter.Config = {
"@typescript-eslint/no-extraneous-class": "error",
"@typescript-eslint/no-floating-promises": "error",
"@typescript-eslint/no-unnecessary-boolean-literal-compare": "error",
"@typescript-eslint/no-unnecessary-constructor": "error",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-useless-constructor": "error",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/prefer-function-type": "error",
Expand Down

0 comments on commit 6ed3731

Please sign in to comment.