Skip to content

Commit

Permalink
Enable Pyflakes "F"
Browse files Browse the repository at this point in the history
  • Loading branch information
wkentaro committed Dec 30, 2023
1 parent d1b8a22 commit b0e9b45
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ line-length = 88
indent-width = 4

[lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = ["E", "I"]
# Enable Pyflakes (`F`), pycodestyle (`E`), isort (`I`).
select = ["E", "F", "I"]
ignore = []

# Allow fix for all enabled rules (when `--fix`) is provided.
Expand Down

0 comments on commit b0e9b45

Please sign in to comment.