From b4c99902fbaf9f4b24a6b902ddc6b59271b3d2c3 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Tue, 8 Oct 2024 16:46:14 +0200 Subject: [PATCH] chore: update eslint config --- eslint.config.mjs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 727ab6db..200ceff9 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -4,8 +4,9 @@ import unjs from "eslint-config-unjs"; export default unjs({ ignores: [], rules: { - "no-undef": 0, - "unicorn/consistent-destructuring": 0, - "unicorn/no-await-expression-member": 0 -}, -}); \ No newline at end of file + "no-undef": 0, + "unicorn/consistent-destructuring": 0, + "unicorn/no-await-expression-member": 0, + "@typescript-eslint/no-empty-object-type": 0, + }, +});