-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.devcontainer.json
63 lines (63 loc) · 2.4 KB
/
.devcontainer.json
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
{
"name": "Kestra-ELT-Pipeline-IDE",
"dockerComposeFile": "docker-compose.yml",
"service": "vs_code_dev_100",
"shutdownAction": "stopCompose",
"workspaceFolder": "/app",
"remoteEnv": {
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}"
},
"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
"ghcr.io/devcontainers/features/git:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"PKief.material-icon-theme",
"ms-azuretools.vscode-docker",
"ms-python.black-formatter",
"ms-python.isort",
"ms-python.flake8",
"innoverio.vscode-dbt-power-user",
"kestra-io.kestra",
"GitHub.vscode-github-actions",
"hashicorp.terraform",
"esbenp.prettier-vscode",
"dracula-theme.theme-dracula"
],
"settings": {
"git.autorefresh": true,
"github.gitProtocol": "ssh",
"workbench.colorTheme": "Dracula Theme",
"workbench.iconTheme": "material-icon-theme",
"workbench.tree.indent": 10,
"editor.rulers": [],
"python.defaultInterpreterPath": "/opt/venv/bin/python",
"python.formatting.provider": "black",
"python.linting.flake8": true,
"python.linting.enabled": true,
"python.analysis.diagnosticMode": "openFilesOnly",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"extensions.verifySignature": false,
"files.associations": {
"*.sql": "jinja-sql", // all .sql files
"**/dbt/**/*.yaml": "jinja-yaml",
"**/dbt/**/*.yml": "jinja-yaml",
"**/dbt/**/docs/**/*.md": "jinja-md"
},
"terraform.languageServer.enable": true
}
}
}
}