Skip to content

Commit

Permalink
noxfile.py: Add 'ruff check .' to 'lint' target
Browse files Browse the repository at this point in the history
Don't replace pylint just yet...
  • Loading branch information
jherland committed May 6, 2024
1 parent b194213 commit bd364b2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ def self_test(session):
def lint(session):
install_groups(session, include=["lint"])
session.run("mypy")
session.run("ruff", "check", ".")
session.run("pylint", "fawltydeps")
test_extra_pylint_disable = [
"broad-exception-caught",
Expand Down

0 comments on commit bd364b2

Please sign in to comment.