Skip to content

Commit

Permalink
Enable complexity check and pycodestyle warnings. Closes #110.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Mar 2, 2024
1 parent 779219c commit d1c5444
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ruff.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
[lint]
select = [
"C901",
"W",
]
ignore = [
# https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
"W191",
Expand Down

1 comment on commit d1c5444

@jaraco
Copy link
Owner Author

@jaraco jaraco commented on d1c5444 Mar 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm. I'm now beginning to think this change disabled the default checks :(.

Please sign in to comment.