jellyfin-vue/.vscode/settings.json
Fernando Fernández 7336bfdca3
chore: fix most sonarcloud's code smells (#2072)
Fixed all SonarCloud's code smells, except:

* Complete the task associated to this "TODO" comment.
* Remove this commented out code.
* Refactor this function to reduce its Cognitive Complexity from `x` to `y`.
* `x` is deprecated.
* This branch's code block is the same as the block for the branch on line `x`.

Basically, all the smells that didn't involve big features or refactors
have been fixed.
2023-08-16 21:14:06 +02:00

49 lines
1.1 KiB
JSON

{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true ,
"source.organizeImports": false
},
"[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": "nested",
"i18n-ally.sortKeys": true,
"i18n-ally.sourceLanguage": "en-US",
"i18n-ally.localesPaths": [
"frontend/locales"
],
"i18n-ally.enabledFrameworks": [
"vue"
],
"eslint.validate": [
"vue",
"javascript",
"typescript"
],
"eslint.format.enable": true,
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
"emmet.includeLanguages": {
"vue": "html"
},
"vue.autoInsert.dotValue": true,
"vue.server.fullCompletionList": true,
"sonarlint.output.showAnalyzerLogs": true,
"sonarlint.output.showVerboseLogs": true,
"sonarlint.connectedMode.project": {
"connectionId": "jellyfin-vue",
"projectKey": "jellyfin_jellyfin-vue"
}
}