Resources
Extensions
The following extensions may prove useful for data science.
Black Formatter
When coding, it is often helpful to have an automatic code formatter. Black is a popular code formatter for Python.
To use Black with Jupyter notebooks, we recommend added the following to your settings.json
file:
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true
},
"black-formatter.args": [
"--line-length=100"
],
"notebook.formatOnSave.enabled": true,
The added settings enable “format on save”, which as the name suggests, will format the active file when it is saved. (Otherwise, the formatter would need to be manually invoked.) We also relax the line length requirement to 100 characters.