Skip to content

Commit

Permalink
fix: disable @typescript-eslint/no-empty-interface rule in single e…
Browse files Browse the repository at this point in the history
…xtends
  • Loading branch information
pablo1v committed Feb 16, 2021
1 parent 63b995f commit 291f5fd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ module.exports = {
'@typescript-eslint/explicit-module-boundary-types': 'off',

'@typescript-eslint/no-shadow': ['error'],
'@typescript-eslint/no-empty-interface': [
'error',
{
allowSingleExtends: true,
},
],
'@typescript-eslint/no-use-before-define': [
'error',
{
Expand Down

0 comments on commit 291f5fd

Please sign in to comment.