mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-05-01 11:54:35 +00:00
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "always",
|
|
"source.organizeImports": "never"
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
|
},
|
|
"[vue]": {
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
|
},
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
"i18n-ally.keystyle": "flat",
|
|
"i18n-ally.sortKeys": true,
|
|
"i18n-ally.sourceLanguage": "en",
|
|
"i18n-ally.localesPaths": [
|
|
"frontend/locales"
|
|
],
|
|
"i18n-ally.enabledFrameworks": [
|
|
"vue"
|
|
],
|
|
"eslint.validate": [
|
|
"vue",
|
|
"javascript",
|
|
"typescript"
|
|
],
|
|
"eslint.format.enable": true,
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"mode": "auto"
|
|
}
|
|
],
|
|
"vue.autoInsert.dotValue": true,
|
|
"vue.inlayHints.missingProps": true,
|
|
"vue.complete.casing.props": "kebab",
|
|
"vue.complete.casing.tags": "pascal",
|
|
"vue.format.script.initialIndent": true,
|
|
"vue.format.style.initialIndent": true,
|
|
"vue.inlayHints.inlineHandlerLeading": true,
|
|
"vue.inlayHints.vBindShorthand": true,
|
|
"vue.server.hybridMode": false,
|
|
"sonarlint.output.showAnalyzerLogs": true,
|
|
"sonarlint.output.showVerboseLogs": true,
|
|
"sonarlint.connectedMode.project": {
|
|
"connectionId": "jellyfin-vue",
|
|
"projectKey": "jellyfin_jellyfin-vue"
|
|
},
|
|
"typescript.preferences.autoImportFileExcludePatterns": ["vue-router"],
|
|
"typescript.tsserver.experimental.enableProjectDiagnostics": true
|
|
}
|