From 357beabaebaa8ef3547a32693e61336726819d3a Mon Sep 17 00:00:00 2001 From: Kirk Lin Date: Thu, 6 Apr 2023 22:02:23 +0800 Subject: [PATCH] fix: an object literal cannot have multiple properties with the same name. (#2682) --- internal/eslint-config/src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/eslint-config/src/index.ts b/internal/eslint-config/src/index.ts index 1b9d0ad9..c1513ee7 100644 --- a/internal/eslint-config/src/index.ts +++ b/internal/eslint-config/src/index.ts @@ -67,7 +67,6 @@ export default { '@typescript-eslint/ban-types': 'off', '@typescript-eslint/no-non-null-assertion': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', - '@typescript-eslint/no-unused-vars': 'off', 'vue/script-setup-uses-vars': 'error', 'vue/no-reserved-component-names': 'off', 'vue/custom-event-name-casing': 'off', -- GitLab