Skip to content

Commit

Permalink
exclude ipynb files from linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jobar8 committed Sep 21, 2024
1 parent 8580475 commit 580efdf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ line-length = 120
[lint]
extend-select = ["I", "B", "PL"]
ignore = []
exclude = ["*.ipynb"]

# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
Expand All @@ -15,6 +16,7 @@ unfixable = []

[format]
quote-style = "single"
exclude = ["*.ipynb"]

[lint.pylint]
max-args = 10

0 comments on commit 580efdf

Please sign in to comment.