Update settings

This commit is contained in:
IRBorisov 2024-04-12 20:32:18 +03:00
parent d93b3621fb
commit 798dce4b91
2 changed files with 79 additions and 91 deletions

14
.vscode/launch.json vendored
View File

@ -34,23 +34,19 @@
},
{
"name": "BE-DebugTest",
"type": "python",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}/rsconcept/backend",
"program": "${workspaceFolder}/rsconcept/backend/manage.py",
"args": [
"test"
],
"args": ["test"],
"django": true
},
{
"name": "BE-Debug",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/rsconcept/backend/manage.py",
"args": [
"runserver"
],
"args": ["runserver"],
"django": true
},
{
@ -79,6 +75,6 @@
"windows": {
"program": "${workspaceFolder}/rsconcept/frontend/node_modules/jest/bin/jest"
}
},
}
]
}

View File

@ -6,15 +6,7 @@
"python.testing.unittestArgs": ["-v", "-s", "./tests", "-p", "test*.py"],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
"python.analysis.typeCheckingMode": "off",
"python.analysis.diagnosticSeverityOverrides": {
// "reportOptionalMemberAccess": "none"
},
"python.analysis.ignore": ["**/tests/**", "**/node_modules/**", "**/venv/**"],
"python.analysis.packageIndexDepths": [
{