basic2/.vscode/settings.json

29 lines
517 B
JSON
Raw Permalink Normal View History

2021-08-27 10:32:21 +08:00
{
2024-06-24 15:54:26 +08:00
"eslint.useFlatConfig": true,
2023-10-29 23:00:06 +08:00
"prettier.enable": false,
"editor.formatOnSave": false,
2022-09-25 23:32:45 +08:00
"editor.codeActionsOnSave": {
2023-12-08 09:39:45 +08:00
"source.fixAll.eslint": "explicit",
"source.fixAll.stylelint": "explicit",
"source.organizeImports": "never"
2022-09-25 23:32:45 +08:00
},
2023-10-29 23:00:06 +08:00
"stylelint.validate": [
"css",
2024-10-16 10:29:24 +08:00
"postcss",
2023-10-29 23:00:06 +08:00
"scss",
"vue"
],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml"
]
2021-08-27 10:32:21 +08:00
}