-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathdevcontainer.json
More file actions
47 lines (47 loc) · 1.48 KB
/
devcontainer.json
File metadata and controls
47 lines (47 loc) · 1.48 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
{
"name": "dbt-sqlserver",
"image": "mcr.microsoft.com/devcontainers/python:3.12",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/jlaundry/devcontainer-features/mssql-odbc-driver:1": {
"version": "18"
},
"ghcr.io/devcontainers/features/azure-cli:1": {}
},
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": ".venv/bin/python",
"python.terminal.activateEnvInCurrentTerminal": true,
"[python]": {
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
},
"editor.defaultFormatter": "charliermarsh.ruff"
},
"python.testing.cwd": "tests",
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.stickyScroll.enabled": true,
"dbt.enableNewLineagePanel": true,
"files.insertFinalNewline": true,
"terminal.integrated.environmentChangesIndicator": "on"
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"innoverio.vscode-dbt-power-user",
"ms-vscode.makefile-tools",
"charliermarsh.ruff",
"eamodio.gitlens",
"GitHub.vscode-github-actions",
"tamasfe.even-better-toml",
"esbenp.prettier-vscode",
"redhat.vscode-yaml"
]
}
}
}