2023-09-15 10:53:23 +08:00
|
|
|
|
{
|
2023-09-16 23:39:38 +08:00
|
|
|
|
"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"
|
|
|
|
|
],
|
2023-09-15 10:53:23 +08:00
|
|
|
|
"[typescript]": {
|
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
|
|
},
|
|
|
|
|
"[javascript]": {
|
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
|
|
},
|
|
|
|
|
"[json]": {
|
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
2023-10-23 18:14:41 +08:00
|
|
|
|
},
|
|
|
|
|
"i18n-ally.localesPaths": [
|
2023-10-25 18:17:19 +08:00
|
|
|
|
"src/locales/index.js",
|
|
|
|
|
"src/locales/languages"
|
2023-10-23 18:14:41 +08:00
|
|
|
|
],
|
2023-10-25 18:17:19 +08:00
|
|
|
|
"i18n-ally.sourceLanguage": "zh",
|
|
|
|
|
"i18n-ally.keystyle": "nested",
|
|
|
|
|
"i18n-ally.extract.ignored": [
|
|
|
|
|
"${item.id}(${item.$name}${\r\n item.$remark ? `,${item.$remark}` : ''\r\n })",
|
|
|
|
|
",${item.$remark}",
|
|
|
|
|
"${row.$remark ? `${row.$remark}-` : ''}${\r\n row.$name\r\n }-${this.$replaceIP(row.id)}-recording-${dayjs().format(\r\n 'YYYY-MM-DD-HH-mm-ss',\r\n )}.${recordFormat}",
|
|
|
|
|
"--serial=${row.id} --window-title=${\r\n row.$remark ? `${row.$remark}-` : ''\r\n }${row.$name}-${\r\n row.id\r\n }-🎥录制中... --record=${savePath} ${this.scrcpyArgs(row.id)}",
|
|
|
|
|
"--serial=${row.id} --window-title=${\r\n row.$remark ? `${row.$remark}-` : ''\r\n }${row.$name}-${row.id} ${this.scrcpyArgs(row.id)}"
|
|
|
|
|
]
|
2023-09-15 10:53:23 +08:00
|
|
|
|
}
|