escrcpy/.vscode/settings.json

113 lines
2.1 KiB
JSON
Raw Normal View History

{
2024-10-28 08:55:49 +01:00
"eslint.codeAction.showDocumentation": {
"enable": true
},
"eslint.format.enable": true,
"prettier.enable": false,
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
2023-12-19 09:22:39 +01:00
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
2024-10-28 08:55:49 +01:00
"eslint.rules.customizations": [
{
"rule": "style/*",
"severity": "off",
"fixable": true
},
{
"rule": "format/*",
"severity": "off",
"fixable": true
},
{
"rule": "*-indent",
"severity": "off",
"fixable": true
},
{
"rule": "*-spacing",
"severity": "off",
"fixable": true
},
{
"rule": "*-spaces",
"severity": "off",
"fixable": true
},
{
"rule": "*-order",
"severity": "off",
"fixable": true
},
{
"rule": "*-dangle",
"severity": "off",
"fixable": true
},
{
"rule": "*-newline",
"severity": "off",
"fixable": true
},
{
"rule": "*quotes",
"severity": "off",
"fixable": true
},
{
"rule": "*semi",
"severity": "off",
"fixable": true
}
],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
2024-10-28 08:55:49 +01:00
"jsonc",
"yaml",
"toml",
"xml",
"gql",
"graphql",
"astro",
"svelte",
"css",
"less",
"scss",
"pcss",
"postcss"
],
"i18n-ally.sourceLanguage": "zh-CN",
2024-10-28 08:55:49 +01:00
"i18n-ally.localesPaths": [
"src/locales/index.js",
"src/locales/languages"
],
"i18n-ally.keystyle": "nested",
"i18n-ally.extract.ignored": [
"Switch",
"input keyevent KEYCODE_APP_SWITCH",
"input keyevent KEYCODE_HOME",
"input keyevent KEYCODE_BACK",
"Back",
"Notification",
"cmd statusbar expand-notifications",
"input keyevent KEYCODE_POWER",
"Crop",
2023-11-03 07:41:46 +01:00
"pair ${this.formData.host}:${this.formData.port} ${this.formData.pair}",
"${item.decoder} & ${item.encoder}",
" & ",
"${key}=${value}",
"npm install",
"npm run build"
2024-07-04 16:25:06 +02:00
],
"cSpell.words": [
"bhsn"
],
2024-03-05 08:40:58 +01:00
}