From a34948ffdcc950f8a5dd5600f1b93f256e3328ea Mon Sep 17 00:00:00 2001 From: Johann Schopplich Date: Thu, 23 Oct 2025 14:17:03 +0200 Subject: [PATCH] chore: ignore tabs from linting --- eslint.config.mjs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 7348726..1259af2 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,4 +1,9 @@ // @ts-check import antfu from '@antfu/eslint-config' -export default antfu() +export default antfu().append({ + files: ['README.md'], + rules: { + 'style/no-tabs': 'off', + }, +})