mirror of
https://github.com/reonokiy/blog.nokiy.net.git
synced 2025-06-15 03:02:53 +02:00
19 lines
419 B
JSON
19 lines
419 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"typescript",
|
|
"astro"
|
|
],
|
|
"prettier.documentSelectors": ["**/*.astro"],
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"files.associations": {
|
|
"*.mdx": "markdown"
|
|
},
|
|
"[astro]": {
|
|
"editor.defaultFormatter": "astro-build.astro-vscode"
|
|
}
|
|
}
|