From 9e2e77d4ee9e00000fc3a8265c53ca0db5a571d9 Mon Sep 17 00:00:00 2001 From: mrkishi Date: Fri, 29 Nov 2019 18:43:49 -0300 Subject: [PATCH] disable `@typescript-eslint/prefer-interface` --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index c8ec8d1d01..946a157e40 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -36,7 +36,8 @@ module.exports = { } ], '@typescript-eslint/no-object-literal-type-assertion': 'off', - '@typescript-eslint/no-unused-vars': 'off' + '@typescript-eslint/no-unused-vars': 'off', + '@typescript-eslint/prefer-interface': 'off' }, globals: { globalThis: false