Open
Description
I'm having to reformat your python code on every pull. I'd highly recommend the ruff
formatter, its fast and has a great vs code plugin. Just install it and set some settings (example below):
EXAMPLE RUFF CONFIG
# REFERENCE: https://docs.astral.sh/ruff/settings/#settings
# The native server supports Jupyter Notebooks out of the box. Unlike ruff-lsp, the
# native server requires the user to explicitly include Jupyter Notebooks in the set of
# files to lint and format. This can be done by updating the extend-include setting in
# the Ruff configuration file.
extend-include = ["*.ipynb"]
[lint.isort]
force-single-line = true
lines-after-imports = 1
EXAMPLE VS CODE CONFIG