Files
moeka-project/.vscode/settings.json
T
LemonNeko 758e30a123 refactor(stage-tamagotchi): rewrite it in rust (#90)
* chore: create tauri project, let window transparent

* chore: fix i18n

* chore: remove cocoa

* feat: open settings window

* feat: window controls shortcuts

* feat: system tray

* chore: install dependencies
2025-03-24 03:03:14 +08:00

61 lines
1.6 KiB
JSON

{
"i18n-ally.sourceLanguage": "en",
"i18n-ally.keystyle": "nested",
"i18n-ally.localesPaths": [
"apps/stage-web/locales",
"apps/stage-tamagotchi/src/renderer/locales",
"apps/stage-tamagotchi/src/main/locales",
"apps/stage-tamagotchi-tauri/locales"
],
"i18n-ally.sortKeys": true,
"i18n-ally.enabledFrameworks": [
"vue"
],
// Disable the default formatter
"prettier.enable": false,
"editor.formatOnSave": false,
// Auto fix
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
// Silent the stylistic rules in you IDE, but still auto fix them
"eslint.rules.customizations": [
{ "rule": "style/*", "severity": "off" },
{ "rule": "format/*", "severity": "off" },
{ "rule": "*-indent", "severity": "off" },
{ "rule": "*-spacing", "severity": "off" },
{ "rule": "*-spaces", "severity": "off" },
{ "rule": "*-order", "severity": "off" },
{ "rule": "*-dangle", "severity": "off" },
{ "rule": "*-newline", "severity": "off" },
{ "rule": "*quotes", "severity": "off" },
{ "rule": "*semi", "severity": "off" }
],
// The following is optional.
// It's better to put under project setting `.vscode/settings.json`
// to avoid conflicts with working with different eslint configs
// that does not support all formats.
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml"
],
"typescript.tsdk": "node_modules/typescript/lib",
"cSpell.words": [
"localforage"
]
}