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 <tukon479@gmail.com>
This commit is contained in:
Innei
2025-05-04 15:10:27 +08:00
parent e055f5cd27
commit d2e945fbe4

View File

@@ -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
},
)