Skip to content

Commit

Permalink
Update vscode setting to avoid cache
Browse files Browse the repository at this point in the history
  • Loading branch information
kaavee315 committed Jul 1, 2024
1 parent 1c4275e commit 3f55031
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
{
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoImportCompletions": true
"python.analysis.autoImportCompletions": true,
"files.exclude": {
"**/venv": true,
"**/__pycache__": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/*.egg-info": true,
"**/.tox": true,
"**/.cache": true,
"**/build/**": true,
"**/dist/**": true
},
"search.exclude": {
"**/venv": true,
"**/__pycache__": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/*.egg-info": true,
"**/.tox": true,
"**/.cache": true,
"**/build/**": true,
"**/dist/**": true
}
}

0 comments on commit 3f55031

Please sign in to comment.