Skip to content

Commit

Permalink
feat: add rule to allow single extends in typescript interface in esl…
Browse files Browse the repository at this point in the history
…int config (#80)

affects: @medly/eslint-config
  • Loading branch information
gmukul01 authored Oct 16, 2021
1 parent 90dbc1e commit 982c3bb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/eslint-config/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-function-return-type": "off"
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-empty-interface": [
"error",
{
"allowSingleExtends": true
}
]
},
"overrides": [
{
Expand Down

0 comments on commit 982c3bb

Please sign in to comment.