From b838dd1458365521d1cf07698b1f5ca24b694f66 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Tue, 20 Aug 2024 18:29:12 +0200 Subject: [PATCH] chore(eslint): disable `@typescript-eslint/no-empty-object-type` --- eslint.config.mjs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index d6ef65b4..7844e440 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -13,6 +13,7 @@ export default createConfigForNuxt({ 'import/order': 'off', 'vue/multi-word-component-names': 'off', 'vue/max-attributes-per-line': ['error', { singleline: 5 }], - '@typescript-eslint/no-explicit-any': 'off', - '@typescript-eslint/ban-types': 'off' + '@typescript-eslint/ban-types': 'off', + '@typescript-eslint/no-empty-object-type': 'off', + '@typescript-eslint/no-explicit-any': 'off' })