Skip to content

Commit

Permalink
chore: add back ESLint rule to prevent interface prefixes
Browse files Browse the repository at this point in the history
Interfaces can be inferred by the IDE and don't need an "I" prefix in the name.
  • Loading branch information
ivanstanev committed Oct 11, 2020
1 parent 89482a5 commit 2212b10
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"rules": {
"@typescript-eslint/semi": "error",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/ban-ts-ignore": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
Expand Down
1 change: 0 additions & 1 deletion test/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/ban-ts-ignore": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
Expand Down

0 comments on commit 2212b10

Please sign in to comment.