mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-24 07:30:15 +01:00
39 lines
843 B
JSON
39 lines
843 B
JSON
{
|
|
"editor.formatOnSave": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true,
|
|
"source.organizeImports": false
|
|
},
|
|
"eslint.format.enable": true,
|
|
"eslint.codeAction.showDocumentation": {
|
|
"enable": true
|
|
},
|
|
"eslint.validate": [
|
|
// "jsonc",
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"vue",
|
|
"html",
|
|
"markdown",
|
|
"json",
|
|
"yaml"
|
|
],
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"i18n-ally.localesPaths": [
|
|
"src/locales",
|
|
"dist-release/win-arm64-unpacked/locales",
|
|
"dist-release/win-unpacked/locales"
|
|
],
|
|
"i18n-ally.sourceLanguage": "zh"
|
|
}
|