From d2e945fbe470243d4d8467aa34c5ff2dc33b77a9 Mon Sep 17 00:00:00 2001 From: Innei Date: Sun, 4 May 2025 15:10:27 +0800 Subject: [PATCH] chore: update ESLint configuration - Modified ESLint configuration to disable markdown support and sortKeys, while ensuring prettier and pnpm support are enabled. - Removed redundant configuration options for prettier and markdown. Signed-off-by: Innei --- eslint.config.mjs | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index feba5993..b107ae9d 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,6 +1,14 @@ import { sxzz } from '@sxzz/eslint-config' export default sxzz( + { + markdown: false, + prettier: true, + pnpm: true, + vue: false, + unocss: false, + sortKeys: false, + }, [ { ignores: [ @@ -81,10 +89,4 @@ export default sxzz( }, }, ], - { - prettier: true, - markdown: true, - vue: false, // auto detection - unocss: false, // auto detection - }, )