-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
73 lines (73 loc) · 1.87 KB
/
devcontainer.json
File metadata and controls
73 lines (73 loc) · 1.87 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
{
"name": "AsyncAPI-Python",
"dockerComposeFile": "docker-compose.yml",
"service": "devcontainer",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"forwardPorts": [
"rabbitmq:15672"
],
"containerEnv": {
"AMQP_URI": "amqp://guest:guest@rabbitmq/",
"PYTEST_AMQP_URI": "amqp://guest:guest@rabbitmq/"
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-pyright.pyright",
"njpwerner.autodocstring",
"tamasfe.even-better-toml",
"ms-python.mypy-type-checker",
"ms-python.black-formatter",
"ms-python.isort",
"redhat.vscode-yaml",
"streetsidesoftware.code-spell-checker",
"asyncapi.asyncapi-preview",
"DavidAnson.vscode-markdownlint",
"github.vscode-github-actions"
],
"settings": {
"python.defaultInterpreterPath": "/workspaces/${localWorkspaceFolderBasename}/.venv/bin/python",
"python.analysis.typeCheckingMode": "strict",
"python.analysis.autoImportCompletions": true,
"python.analysis.diagnosticMode": "workspace",
"python.analysis.autoSearchPaths": true,
"python.analysis.extraPaths": [
"./src"
],
"python.analysis.include": [
"src/**",
"*.py"
],
"python.analysis.stubPath": "./src",
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.mypyEnabled": false,
"yaml.schemas": {
"https://asyncapi.com/schema-store/3.0.0-without-$id.json": [
"file:///workspaces/asyncapi-python/examples/*.yaml"
]
},
"cSpell.ignoreWords": [
"asyncapi",
"codegen",
"devcontainer",
"pydantic",
"datamodel",
"amqp",
"venv",
"jsonschema",
"fanout",
"anypointmq",
"googlepubsub",
"ibmmq",
"mqtt"
]
}
}
},
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/node:1": {}
}
}