From 88384e7d210444cc4e7b9abcc0984faaf1007c24 Mon Sep 17 00:00:00 2001 From: alina sireneva Date: Sat, 18 Jan 2025 11:18:43 +0300 Subject: [PATCH] build: exclude docs from type-aware linting --- eslint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.js b/eslint.config.js index e95e9869..89b14389 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -9,6 +9,7 @@ export default antfu({ ignoresTypeAware: [ '.config/**/*', 'e2e/**', + 'docs/**', ], overrides: { 'ts/consistent-type-imports': 'off',