mirror of
https://github.com/reonokiy/blog.nokiy.net.git
synced 2025-06-16 11:41:17 +02:00
118 lines
2.4 KiB
JSON
118 lines
2.4 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": [
|
||
"abbrlink",
|
||
"antfu",
|
||
"Artículos",
|
||
"astrojs",
|
||
"attributify",
|
||
"Beze",
|
||
"blurhash",
|
||
"bmoji",
|
||
"canvaskit",
|
||
"Disqus",
|
||
"Etiquetas",
|
||
"Frontmatter",
|
||
"Fuwriu",
|
||
"Giscus",
|
||
"GSAP",
|
||
"gtag",
|
||
"hètí",
|
||
"Heti",
|
||
"katex",
|
||
"Lightbox",
|
||
"mdast",
|
||
"msrc",
|
||
"msvalidate",
|
||
"noopener",
|
||
"noreferrer",
|
||
"Noto",
|
||
"oklch",
|
||
"overlayscrollbars",
|
||
"pagefind",
|
||
"partytown",
|
||
"photoswipe",
|
||
"pswp",
|
||
"radishzz",
|
||
"rashomon",
|
||
"rehype",
|
||
"reimagines",
|
||
"Retypeset",
|
||
"Roundhand",
|
||
"Sentimentalisme",
|
||
"Servetus",
|
||
"Sobre",
|
||
"srcset",
|
||
"STIX",
|
||
"titlebar",
|
||
"Twikoo",
|
||
"Umami",
|
||
"unocss",
|
||
"unpic",
|
||
"vite",
|
||
"waline",
|
||
"walinejs",
|
||
"weibo",
|
||
"Посты",
|
||
"себе",
|
||
"Теги"
|
||
]
|
||
}
|