forked from plan4better/data_preparation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.devcontainer.json
More file actions
executable file
·27 lines (27 loc) · 860 Bytes
/
.devcontainer.json
File metadata and controls
executable file
·27 lines (27 loc) · 860 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
// See https://aka.ms/vscode-remote/containers for the
// documentation about the devcontainer.json format
{
"name": "Data Preparation DevContainer",
"dockerComposeFile": [
"docker-compose.yml"
],
"service": "app",
"workspaceFolder": "/app",
"shutdownAction": "none",
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-python.python",
"github.copilot",
"donjayamanne.python-extension-pack",
"ms-azuretools.vscode-docker",
"genieai.chatgpt-vscode",
"ms-python.black-formatter",
"charliermarsh.ruff",
],
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true
}
}