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' })