-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecure-code-agent.code-workspace
More file actions
48 lines (48 loc) · 1.64 KB
/
secure-code-agent.code-workspace
File metadata and controls
48 lines (48 loc) · 1.64 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
{
"folders": [
{ "name": "secure-code-agent", "path": "." },
{ "name": "src — secure_code_audit", "path": "src/secure_code_audit" },
{ "name": "docs", "path": "docs" },
{ "name": "tests", "path": "tests" },
{ "name": "skills", "path": "skills/secure-code-agent" },
{ "name": "examples", "path": "examples" }
],
"settings": {
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestArgs": ["tests"],
"python.analysis.typeCheckingMode": "basic",
"editor.rulers": [100],
"editor.tabSize": 4,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports.ruff": "explicit",
"source.fixAll.ruff": "explicit"
}
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.rulers": [],
"files.trimTrailingWhitespace": false
},
"files.exclude": {
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/.ruff_cache": true,
"**/*.egg-info": true,
".venv": true
}
},
"extensions": {
"recommendations": [
"ms-python.python",
"charliermarsh.ruff",
"tamasfe.even-better-toml",
"redhat.vscode-yaml",
"yzhang.markdown-all-in-one",
"github.vscode-github-actions"
]
}
}