Update dependencies

This commit is contained in:
Joakim Hellsén 2024-05-21 02:50:37 +02:00
commit 3f3ad42acd
No known key found for this signature in database
GPG key ID: D196AE66FEBE1DC9
4 changed files with 15 additions and 19 deletions

View file

@ -33,10 +33,11 @@ lint.ignore = [
"ANN201", # Checks that public functions and methods have return type annotations.
"ARG001", # Checks for the presence of unused arguments in function definitions.
"B008", # Checks for function calls in default function arguments.
"D100", # Checks for undocumented public module definitions.
"CPY001", # Checks for the absence of copyright notices within Python files.
"D100", # Checks for undocumented public module definitions.
"D104", # Checks for undocumented public package definitions.
"FIX002", # Checks for "TODO" comments.
"RUF029", # Checks for functions declared async that do not await or otherwise use features requiring the function to be declared async.
]
[tool.ruff.lint.pydocstyle]