chore(lint): update eslint rule

disable @typescript-eslint/no-empty-interface
This commit is contained in:
Colin Ogoo 2022-01-06 01:45:58 +00:00
commit 4ce5b25b9c

View file

@ -9,6 +9,7 @@
"rules": { "rules": {
"@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off" "@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-empty-interface": "off"
} }
} }