File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments