summaryrefslogtreecommitdiffstats
path: root/.devcontainer/devcontainer.json
blob: 6b0dac35b28f1098422474fcdbf0326511310fb7 (plain)
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
{
	"name": "LSP Dev Container",
	"build": {
        "dockerfile": "./Dockerfile",
        "context": ".."
    },
    "features": {
		"ghcr.io/devcontainers/features/powershell:1": {
			"version": "latest"
		},
		"ghcr.io/devcontainers/features/dotnet:1": {
			"version": "latest"
		}
	},
	"customizations": {
		"vscode": {
			"extensions": [
				"esbenp.prettier-vscode",
				"ms-python.python",
				"ms-python.vscode-pylance",
				"ms-python.black-formatter",
				"ms-python.isort"
			]
		}
	},
	"onCreateCommand": "bash scripts/onCreateCommand.sh",
	"postCreateCommand": "bash scripts/postCreateCommand.sh"
}