Skip to content

Commit 74f29fb

Browse files
committed
chore(devcontainer): clean up settings syntax, extensions
1 parent 00bf073 commit 74f29fb

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.devcontainer/devcontainer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@
1818
},
1919
// Add the IDs of extensions you want installed when the container is created.
2020
"extensions": [
21-
"bungcip.better-toml",
2221
"eamodio.gitlens",
2322
"esbenp.prettier-vscode",
2423
"mhutchie.git-graph",
2524
"ms-python.python",
26-
"ms-python.vscode-pylance"
25+
"ms-python.black-formatter",
26+
"ms-python.flake8",
27+
"tamasfe.even-better-toml"
2728
]
2829
}
2930
}

.vscode/settings.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
{
22
"editor.formatOnSave": true,
3+
"editor.defaultFormatter": "esbenp.prettier-vscode",
34
"files.encoding": "utf8",
45
"files.eol": "\n",
56
"files.insertFinalNewline": true,
67
"files.trimFinalNewlines": true,
78
"files.trimTrailingWhitespace": true,
89
"[python]": {
9-
"editor.defaultFormatter": "ms-python.python"
10+
"editor.defaultFormatter": "ms-python.black-formatter"
1011
},
11-
"python.formatting.provider": "black",
1212
"python.languageServer": "Pylance",
13-
"python.linting.enabled": true,
14-
"python.linting.flake8Enabled": true,
1513
"python.testing.pytestArgs": ["tests"],
1614
"python.testing.pytestEnabled": true,
1715
"python.testing.unittestEnabled": false

0 commit comments

Comments
 (0)