blog/.vscode/settings.json
radishzzz bdc2aa32e6 refactor: enhance site navigation and styling
- Add view transitions for site title
- Update Navbar with hover effects and improved typography
- Modify index page layout with decorative lines and date formatting
- Adjust post publication dates
- Update VSCode dictionary with new terms
2025-02-04 22:32:15 +00:00

89 lines
2 KiB
JSON

{
"[markdown]": {
"editor.quickSuggestions": {
"comments": "on",
"other": "on",
"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 },
{ "rule": "*-indent", "severity": "off", "fixable": true },
{ "rule": "*-spacing", "severity": "off", "fixable": true },
{ "rule": "*-spaces", "severity": "off", "fixable": true },
{ "rule": "*-order", "severity": "off", "fixable": true },
{ "rule": "*-dangle", "severity": "off", "fixable": true },
{ "rule": "*-newline", "severity": "off", "fixable": true },
{ "rule": "*quotes", "severity": "off", "fixable": true },
{ "rule": "*semi", "severity": "off", "fixable": true }
],
// Enable eslint for all supported languages
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml",
"toml",
"xml",
"gql",
"graphql",
"astro",
"css",
"less",
"scss",
"pcss",
"postcss"
],
"typescript.tsdk": "node_modules/typescript/lib",
"files.associations": {
"*.mdx": "markdown"
},
"cSpell.words": [
"antfu",
"astrojs",
"attributify",
"bmoji",
"Frontmatter",
"gtag",
"katex",
"Lightbox",
"mdast",
"msrc",
"msvalidate",
"overlayscrollbars",
"partytown",
"photoswipe",
"pswp",
"radishzz",
"rehype",
"Retypeset",
"Roundhand",
"STIX",
"titlebar",
"Umami",
"unocss",
"vite",
"waline",
"weibo"
]
}