-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
40 lines (32 loc) · 1001 Bytes
/
settings.json
File metadata and controls
40 lines (32 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
// Hide heavy folders from the Explorer
"files.exclude": {
"**/.venv": true,
"**/__pycache__": true
},
// Exclude from search results
"search.exclude": {
"**/.venv": true,
"**/__pycache__": true
},
// Stop Pylance from indexing thousands of files
"python.analysis.exclude": [
".venv",
"**/__pycache__"
],
// Use your virtual environment automatically
"python.defaultInterpreterPath": ".venv/Scripts/python.exe",
// Format on save (clean code)
"editor.formatOnSave": true,
// Use Black if installed (optional)
"python.formatting.provider": "black",
// Disable linting noise unless you want it
"python.linting.enabled": false,
// Smooth terminal experience
"terminal.integrated.defaultProfile.windows": "PowerShell",
// Prevent VS Code from scanning large folders
"files.watcherExclude": {
"**/.venv/**": true,
"**/__pycache__/**": true
}
}