-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.devcontainer.json
More file actions
44 lines (44 loc) · 905 Bytes
/
Copy path.devcontainer.json
File metadata and controls
44 lines (44 loc) · 905 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
41
42
43
44
{
"name": "bypasshub-dev",
"dockerComposeFile": [
"compose.yml",
"compose.dev.yml"
],
"service": "bypasshub",
"shutdownAction": "none",
"workspaceFolder": "/usr/local/src/bypasshub",
"onCreateCommand": [
"pip",
"install",
"--editable",
"/usr/local/src/bypasshub/bypasshub"
],
"features": {
"ghcr.io/devcontainers/features/git:1": {}
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"python.analysis.diagnosticSeverityOverrides": {
"reportImportCycles": "none"
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"ruff.format.args": [
"--preview"
],
"ruff.lint.args": [
"--preview"
]
},
"extensions": [
"ms-python.python",
"charliermarsh.ruff",
"streetsidesoftware.code-spell-checker",
"yy0931.vscode-sqlite3-editor"
]
}
}
}