-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.devcontainer.json
45 lines (45 loc) · 1.58 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
// Visual Studio Code Development Container configuration file
// https://code.visualstudio.com/docs/remote/devcontainerjson-reference
{
// Docker build instructions
"name": "Docker foundations",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
// Visual Studio Code extensions
"extensions": [
"davidanson.vscode-markdownlint",
"github.vscode-github-actions",
"github.vscode-pull-request-github",
"ms-python.flake8",
"ms-python.pylint",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-azuretools.vscode-docker",
"redhat.vscode-yaml",
"streetsidesoftware.code-spell-checker"
],
// Visual Studio Code environment configuration
"settings": {
// Set the default terminal application to bash
"#terminal.integrated.defaultProfile.linux#": "/bin/bash",
// Customize YAML formatting
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "keep",
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
}
},
// Set Python configuration for runtime, syntax analysis, and linting
"python.analysis.useImportHeuristic": true,
"python.pythonPath": "/usr/local/bin/python3"
}
}
}
}