Closed
Description
Hi, currently the extension does not perform linting for jupyter notebooks. I have tried adding "include = [".py", ".pyi", "**/pyproject.toml", "*.ipynb"]" into the pyproject.toml but it still fails to work.
- running on windows 10
- latest extension version
- VScodium version 1.79.2
setting.json
"ruff.args": [
"--config=D:/Portable Apps/VSCodium/data/pyproject.toml",
],
pyproject.toml
[tool.ruff]
select = ["ALL"]
ignore = ["ERA001","E501"]
include = ["*.py", "*.pyi", "**/pyproject.toml", "*.ipynb"]