We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9222b9b commit 4d31850Copy full SHA for 4d31850
.devcontainer/devcontainer.json
@@ -7,6 +7,23 @@
7
"remoteUser": "devops",
8
"customizations": {
9
"vscode": {
10
+ "settings": {
11
+ "[python]": {
12
+ "editor.defaultFormatter": "ms-python.black-formatter",
13
+ "editor.formatOnSave": true
14
+ },
15
+ "python.testing.pytestEnabled": false,
16
+ "python.testing.unittestEnabled": true,
17
+ "pylint.lintOnChange": true,
18
+ "markdown-preview-github-styles.colorTheme": "light",
19
+ "files.exclude": {
20
+ "**/.git": true,
21
+ "**/.DS_Store": true,
22
+ "**/*.pyc": true,
23
+ "**/__pycache__": true,
24
+ "**/.pytest_cache": true
25
+ }
26
27
"extensions": [
28
"VisualStudioExptTeam.vscodeintellicode",
29
"ms-python.python",
.vscode/settings.json
0 commit comments