Skip to content

Commit

Permalink
ruff check logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Sep 2, 2023
1 parent 19ed4e4 commit 43180e2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,12 @@ filterwarnings = [
# PT025 invalid use of pytest fixtures in other fixtures
# RUF200 validate pyproject.toml
# I isort
select = ["E", "F", "PT025", "UP", "RUF200", "I"]
select = ["E", "F", "PT025", "UP", "RUF200", "I", "G"]
# darker will fix this as code is
# reformatted when it is changed.
ignore = ["E501"]
# We have a lot of use of f strings in log messages
# so disable that lint for now
ignore = ["E501", "G004"]

extend-include = ["*.ipynb"]

Expand Down

0 comments on commit 43180e2

Please sign in to comment.