Skip to content

Commit

Permalink
Update ruff config
Browse files Browse the repository at this point in the history
  • Loading branch information
WillB97 committed Apr 6, 2024
1 parent 0606da1 commit 366a1fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ version_file = "april_vision/_version.py"
# ### Linting Rules ###
[tool.ruff]
line-length = 95
select = [
lint.select = [
"D", # pydocstyle
"E", # pycodestyle error
"F", # pyflakes
Expand All @@ -79,7 +79,7 @@ select = [
# "SLF001", # warn about accessing private members, these can be noqa'd when necessary
]
preview = true # Enable preview to get the rest of pycodestyle errors
ignore = [
lint.ignore = [
"D104", # Ignoe missing docstring in public package
"D105", # Ignore missing docstring in magic method
"D107", # Ignore missing docstring in __init__
Expand Down

0 comments on commit 366a1fe

Please sign in to comment.