37 lines
956 B
JSON
37 lines
956 B
JSON
{
|
|
"name": "Kwaylon",
|
|
"build": {
|
|
"dockerfile": "./Dockerfile",
|
|
"context": "../"
|
|
},
|
|
"mounts": [
|
|
"source=/etc/localtime,target=/etc/localtime,type=bind,consistency=cached",
|
|
"source=/etc/timezone,target=/etc/timezone,type=bind,consistency=cached"
|
|
],
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/git:1": {},
|
|
"ghcr.io/devcontainers/features/github-cli:1": {},
|
|
"ghcr.io/devcontainers/features/python:1": {}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"ms-toolsai.jupyter",
|
|
"mhutchie.git-graph",
|
|
"ms-python.isort",
|
|
"ms-python.autopep8"
|
|
],
|
|
"settings": {
|
|
// "python.editor.defaultFormatter": "ms-python.autopep8",
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.autopep8",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"autopep8.args": [
|
|
"--max-line-length 120"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
} |