Skip to content

Commit

Permalink
Disable linting for Jupyter Notebooks temporarily
Browse files Browse the repository at this point in the history
Ruff 0.6.0 introduced linting of Jupyter notebooks by default:

https://astral.sh/blog/ruff-v0.6.0

To get linting working again, disable this. We will fix it later.
  • Loading branch information
mfisher87 committed Aug 26, 2024
1 parent 87feac8 commit 59354ca
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ stubPath = "./stubs"
[tool.ruff]
line-length = 88
src = ["earthaccess", "stubs", "tests"]
# HACK: Don't lint or format Jupyter Notebooks for now.
extend-exclude = ["*.ipynb"]

[tool.ruff.lint]
extend-select = ["I", "T20", "D", "G"]
Expand Down

0 comments on commit 59354ca

Please sign in to comment.