2023-07-15 17:46:19 +03:00
|
|
|
{
|
2023-08-20 13:59:46 +03:00
|
|
|
"search.exclude": {
|
|
|
|
".mypy_cache/": true,
|
|
|
|
".pytest_cache/": true
|
|
|
|
},
|
2023-08-16 21:26:59 +03:00
|
|
|
"python.testing.unittestArgs": [
|
2023-08-17 15:43:39 +03:00
|
|
|
"-v",
|
|
|
|
"-s",
|
|
|
|
"./tests",
|
|
|
|
"-p",
|
|
|
|
"test*.py"
|
2023-08-16 21:26:59 +03:00
|
|
|
],
|
2023-08-17 15:43:39 +03:00
|
|
|
"python.testing.pytestEnabled": false,
|
|
|
|
"python.testing.unittestEnabled": true,
|
|
|
|
"eslint.workingDirectories": [
|
|
|
|
{
|
|
|
|
"mode": "auto"
|
|
|
|
}
|
|
|
|
],
|
2023-08-20 13:59:46 +03:00
|
|
|
"python.analysis.typeCheckingMode": "off",
|
|
|
|
"python.analysis.diagnosticSeverityOverrides": {
|
|
|
|
// "reportOptionalMemberAccess": "none"
|
|
|
|
},
|
|
|
|
"python.analysis.ignore": ["**/tests/**", "**/node_modules/**", "**/venv/**"],
|
|
|
|
"python.analysis.packageIndexDepths": [
|
|
|
|
{
|
|
|
|
"name": "django",
|
|
|
|
"depth": 5
|
|
|
|
}
|
2023-08-27 00:19:19 +03:00
|
|
|
],
|
|
|
|
"colorize.include": [".tsx", ".jsx", ".ts", ".js"],
|
|
|
|
"colorize.languages": [
|
|
|
|
"typescript",
|
|
|
|
"javascript",
|
|
|
|
"css",
|
|
|
|
"typescriptreact",
|
|
|
|
"javascriptreact"
|
2023-08-20 13:59:46 +03:00
|
|
|
]
|
2023-07-15 17:46:19 +03:00
|
|
|
}
|