Done for Login and notification system

This commit is contained in:
2024-05-30 14:35:48 +00:00
parent d5c967d2e5
commit 9400113a57
52 changed files with 2204 additions and 616 deletions

20
.vscode/settings.json vendored
View File

@ -1,10 +1,26 @@
{
"editor.codeActionsOnSave": {
"source.organizeImports": "always",
"source.fixAll": "always"
"source.fixAll": "always",
"source.fixAll.eslint": "explicit"
},
"editor.suggest.preview": true,
"editor.inlayHints.enabled": "offUnlessPressed",
"javascript.inlayHints.parameterNames.enabled": "all",
"editor.formatOnSaveMode": "modificationsIfAvailable",
"eslint.workingDirectories": ["./fuware-fe"],
"editor.insertSpaces": true,
"editor.tabSize": 2,
"python.analysis.autoImportCompletions": true
"python.analysis.autoImportCompletions": true,
"python.analysis.indexing": true,
"python.analysis.fixAll": ["source.unusedImports"],
"python.analysis.packageIndexDepths": [
{
"name": "fuware",
"depth": 3,
"includeAllSymbols": false
}
]
// "python.analysis.extraPaths": ["./fuware"],
// "python.autoComplete.extraPaths": ["./fuware"]
}