From 1f2d0f60cf008fb0dbba7bbf34c1b1d96cbfd7db Mon Sep 17 00:00:00 2001 From: Diego Jesus Hernandez Date: Tue, 18 Jun 2024 21:46:21 -0600 Subject: [PATCH] chore: ignore unsupported import attributes by eslint --- eslint.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eslint.config.js b/eslint.config.js index 5784d7484af2df..2946d283d27282 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -22,6 +22,8 @@ export default tseslint.config( '**/temp/**', '**/.vitepress/cache/**', '**/*.snap', + // eslint doesn't support import attributes + 'playground/resolve/import-attributes.js', ], }, eslint.configs.recommended,