Skip to content

Commit

Permalink
Fix ruff config
Browse files Browse the repository at this point in the history
  • Loading branch information
vectornguyen76 committed Dec 1, 2024
1 parent f54794d commit 7dd37e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ruff.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Exclude a variety of commonly ignored directories.
exclude = [
"*.ipynb",
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb",
".ipynb_checkpoints",
".mypy_cache",
".nox",
Expand Down Expand Up @@ -51,7 +51,7 @@ select = [
# isort
"I",
]
ignore = ["E402", "E501", "UP008", "B008", "B904"]
ignore = ["E402", "E501", "UP008", "B008", "B904", "F811", "I001"]

# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
Expand Down

0 comments on commit 7dd37e7

Please sign in to comment.