mirror of
https://codeberg.org/HPCesia/AstralHalo.git
synced 2025-04-08 17:34:27 +08:00
24 lines
554 B
JSON
24 lines
554 B
JSON
{
|
|
"editor.indentSize": "tabSize",
|
|
"editor.tabSize": 2,
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"[mdx]": {
|
|
"editor.defaultFormatter": "unifiedjs.vscode-mdx"
|
|
},
|
|
"css.validate": false,
|
|
"stylelint.validate": ["css", "astro"],
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"astro",
|
|
"typescript",
|
|
"typescriptreact"
|
|
],
|
|
"eslint.useFlatConfig": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "always",
|
|
"source.fixAll.stylelint": "always"
|
|
}
|
|
}
|