-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1943b3a
commit 46bd343
Showing
1 changed file
with
44 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,45 @@ | ||
// Visual Studio Code Development Container configuration file | ||
// https://code.visualstudio.com/docs/remote/devcontainerjson-reference | ||
{ | ||
"dockerFile": "Dockerfile", | ||
"extensions": [ | ||
"knisterpeter.vscode-github", | ||
"github.vscode-pull-request-github" | ||
] | ||
} | ||
// 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" | ||
} | ||
} | ||
} | ||
} |