-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython.json
More file actions
94 lines (94 loc) · 2.48 KB
/
Copy pathpython.json
File metadata and controls
94 lines (94 loc) · 2.48 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"tool": "python",
"displayName": "Python",
"detection": {
"commands": ["python", "python3", "pip", "pip3", "pipenv", "poetry", "conda"],
"paths": ["/usr/bin/python3", "/opt/homebrew/bin/python3"]
},
"caches": [
{
"id": "pip-cache",
"path": "~/Library/Caches/pip",
"type": "packages",
"description": "Pip package download cache",
"safeToDelete": true,
"requiresConfirmation": false,
"toolCommand": {
"executable": "pip",
"args": ["cache", "purge"]
}
},
{
"id": "pip-cache-linux",
"path": "~/.cache/pip",
"type": "packages",
"description": "Pip package download cache (Linux)",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "poetry-cache",
"path": "~/Library/Caches/pypoetry",
"type": "packages",
"description": "Poetry dependency manager cache",
"safeToDelete": true,
"requiresConfirmation": false,
"toolCommand": {
"executable": "poetry",
"args": ["cache", "clear", "--all", "pypi"]
}
},
{
"id": "pipenv-cache",
"path": "~/Library/Caches/pipenv",
"type": "packages",
"description": "Pipenv virtual environment cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "conda-cache",
"path": "~/Library/Caches/conda",
"type": "packages",
"description": "Conda package manager cache",
"safeToDelete": true,
"requiresConfirmation": false,
"toolCommand": {
"executable": "conda",
"args": ["clean", "--all", "-y"]
}
},
{
"id": "pytest-cache",
"path": "~/.pytest_cache",
"type": "buildArtifacts",
"description": "Pytest test result cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "mypy-cache",
"path": "~/.mypy_cache",
"type": "buildArtifacts",
"description": "MyPy type checker cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "tox-cache",
"path": "~/.tox",
"type": "buildArtifacts",
"description": "Tox testing environment cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "jupyter-cache",
"path": "~/Library/Jupyter",
"type": "buildArtifacts",
"description": "Jupyter notebook runtime data",
"safeToDelete": false,
"requiresConfirmation": true
}
]
}