24 lines
612 B
JSON
24 lines
612 B
JSON
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
|
|
{
|
|
"context": "..",
|
|
"dockerFile": "Dockerfile",
|
|
"appPort": "8124:8123",
|
|
"runArgs": [
|
|
"-e",
|
|
"GIT_EDTIOR='code --wait'"
|
|
],
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"tabnine.tabnine-vscode"
|
|
],
|
|
"settings": {
|
|
"python.pythonPath": "/usr/local/bin/python",
|
|
"python.linting.pylintEnabled": true,
|
|
"python.linting.enabled": true,
|
|
"python.formatting.provider": "black",
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnType": true,
|
|
"files.trimTrailingWhitespace": true
|
|
}
|
|
} |