Skip to content

Commit 7792f83

Browse files
feat: Update & add ms-python.isort
1 parent 4a4be58 commit 7792f83

1 file changed

Lines changed: 26 additions & 2 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,33 @@
1414
"customizations": {
1515
// Configure properties specific to VS Code.
1616
"vscode": {
17-
"settings": {},
17+
"settings": {
18+
"[python]": {
19+
"editor.wordBasedSuggestions": false,
20+
"editor.defaultFormatter": null,
21+
"editor.formatOnPaste": true,
22+
"editor.formatOnSave": true
23+
},
24+
// "python.defaultInterpreterPath": "/usr/local/bin/python",
25+
"python.linting.enabled": true,
26+
"python.linting.pylintEnabled": true,
27+
"python.formatting.autopep8Path": "/usr/local/python/bin/autopep8",
28+
"python.formatting.blackPath": "/usr/local/python/bin/black",
29+
"python.formatting.yapfPath": "/usr/local/python/bin/yapf",
30+
"python.formatting.provider": "black",
31+
"python.linting.banditPath": "/usr/local/python/bin/bandit",
32+
"python.linting.flake8Path": "/usr/local/python/bin/flake8",
33+
"python.linting.mypyPath": "/usr/local/python/bin/mypy",
34+
"python.linting.pycodestylePath": "/usr/local/python/bin/pycodestyle",
35+
"python.linting.pydocstylePath": "/usr/local/python/bin/pydocstyle",
36+
"python.linting.pylintPath": "/usr/local/python/bin/pylint",
37+
"isort.path": [
38+
"/usr/local/python/bin/isort"
39+
]
40+
},
1841
"extensions": [
19-
"ms-python.python"
42+
"ms-python.python",
43+
"ms-python.isort"
2044
]
2145
// "devPort": {}
2246
}

0 commit comments

Comments
 (0)