ConceptPortal-public/.vscode/settings.json

33 lines
703 B
JSON
Raw Normal View History

2023-07-15 17:46:19 +03:00
{
"search.exclude": {
".mypy_cache/": true,
".pytest_cache/": true
},
2023-08-16 21:26:59 +03:00
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"test*.py"
2023-08-16 21:26:59 +03:00
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
2023-08-17 21:23:54 +03:00
"python.linting.enabled": true,
"python.linting.mypyEnabled": true,
"python.analysis.typeCheckingMode": "off",
"python.analysis.diagnosticSeverityOverrides": {
// "reportOptionalMemberAccess": "none"
},
"python.analysis.ignore": ["**/tests/**", "**/node_modules/**", "**/venv/**"],
"python.analysis.packageIndexDepths": [
{
"name": "django",
"depth": 5
}
]
2023-07-15 17:46:19 +03:00
}