chore(eslint): disable @typescript-eslint/no-empty-object-type

This commit is contained in:
Benjamin Canac
2024-08-20 18:29:12 +02:00
parent b4568b31cf
commit b838dd1458

View File

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