We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb5e871 commit 226624dCopy full SHA for 226624d
template/py/{{cookiecutter.project_slug}}/ruff.toml
@@ -12,4 +12,9 @@ select = [
12
"UP", # pyupgrade
13
"ARG001", # unused arguments in functions
14
]
15
-ignore = []
+
16
+ignore = [
17
+ "E501", # line too long
18
+ "B008", # do not perform function calls in argument defaults
19
+ "B904", # Allow raising exceptions without from e, for HTTPException
20
+]
0 commit comments