chore: update dependencies

This commit is contained in:
radishzzz 2025-02-04 15:23:40 +00:00
parent 3bd8e6ad1c
commit 35b2542ec8
3 changed files with 357 additions and 405 deletions

23
.vscode/settings.json vendored
View file

@ -6,12 +6,17 @@
"strings": "on"
}
},
// Disable the default formatter, use eslint instead
"prettier.enable": false,
"editor.formatOnSave": false,
// Auto fix
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
// Silent the stylistic rules in you IDE, but still auto fix them
"eslint.rules.customizations": [
{ "rule": "style/*", "severity": "off", "fixable": true },
{ "rule": "format/*", "severity": "off", "fixable": true },
@ -24,6 +29,8 @@
{ "rule": "*quotes", "severity": "off", "fixable": true },
{ "rule": "*semi", "severity": "off", "fixable": true }
],
// Enable eslint for all supported languages
"eslint.validate": [
"javascript",
"javascriptreact",
@ -46,8 +53,22 @@
"pcss",
"postcss"
],
"typescript.tsdk": "node_modules/typescript/lib",
"files.associations": {
"*.mdx": "markdown"
}
},
"cSpell.words": [
"antfu",
"astrojs",
"attributify",
"katex",
"mdast",
"overlayscrollbars",
"partytown",
"photoswipe",
"rehype",
"unocss",
"vite"
]
}