mirror of
https://github.com/remvze/moodist.git
synced 2025-12-16 16:34:14 +00:00
20 lines
512 B
JSON
20 lines
512 B
JSON
{
|
|
"files.eol": "\n",
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"astro"
|
|
],
|
|
"stylelint.validate": ["css", "html", "astro"],
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.fixAll.stylelint": "explicit"
|
|
},
|
|
"[javascript][javascriptreact][typescript][typescriptreact][astro]": {
|
|
"editor.formatOnSave": false
|
|
}
|
|
}
|