Skip to content

Commit 8a096a5

Browse files
committed
Added recommended VS Code WS extensions and settings
1 parent 6fce476 commit 8a096a5

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.vscode/extensions.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"recommendations": [
3+
"ms-python.black-formatter", // For formatting Python code
4+
"ms-python.isort", // For sorting Python imports
5+
"tamasfe.even-better-toml", // For generating Python docstrings
6+
"njpwerner.autodocstring" // For TOML syntax highlighting and linting
7+
]
8+
}

.vscode/settings.json.recommended

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
////////////////////////////////////////////////////////////////////////////
3+
// Language specific
4+
"[python]": {
5+
"editor.defaultFormatter": "ms-python.black-formatter",
6+
"editor.formatOnSave": true,
7+
"editor.codeActionsOnSave": {
8+
"source.organizeImports": "explicit",
9+
},
10+
},
11+
////////////////////////////////////////////////////////////////////////////
12+
// Extensions
13+
// // Auto Docstring
14+
"autoDocstring.docstringFormat": "numpy",
15+
////////////////////////////////////////////////////////////////////////////
16+
}

0 commit comments

Comments
 (0)