You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"A003", # builtin-attribute-shadowing. Shadowing `id` in a model for instance.
290
-
"ANN401", # No dynamically typed expressions (like "Any")
291
-
"COM812", # Missing trailing comma (can cause ruff formatter conflicts)
292
-
"D105", # Missing docstring in magic method
293
-
"D107", # Missing docstring in __init__
294
-
"D203", # 1 blank line required before class docstring (conflicts with D211 - No blank lines allowed before class docstring)
295
-
"D213", # Multi-line docstring summary should start at the second line (conflicts with D212 - Multi-line docstring summary should start at the first line)
296
-
"ISC001", # Implicit string concatenation found (can cause ruff formatter conflicts)
297
-
]
298
-
# Don't automatically fix these errors, but still report them
299
-
unfixable = [
300
-
"ERA001", # eradicate commented out code
301
-
"T20", # flake8-print
302
-
"RUF100", # unused-noqa
303
-
]
304
-
305
-
306
-
[tool.ruff.lint.per-file-ignores]
307
-
"**/__init__.py" = ["D104"] # Missing docstring in public package
308
-
"scripts/*" = [
309
-
"FBT003", # boolean-positional-value-in-call (needed for typer default arg)
"A003", # builtin-attribute-shadowing. Shadowing `id` in a model for instance.
72
+
"ANN401", # No dynamically typed expressions (like "Any")
73
+
"COM812", # Missing trailing comma (can cause ruff formatter conflicts)
74
+
"D105", # Missing docstring in magic method
75
+
"D107", # Missing docstring in __init__
76
+
"D203", # 1 blank line required before class docstring (conflicts with D211 - No blank lines allowed before class docstring)
77
+
"D213", # Multi-line docstring summary should start at the second line (conflicts with D212 - Multi-line docstring summary should start at the first line)
78
+
"ISC001", # Implicit string concatenation found (can cause ruff formatter conflicts)
79
+
]
80
+
# Don't automatically fix these errors, but still report them
81
+
unfixable = [
82
+
"ERA001", # eradicate commented out code
83
+
"T20", # flake8-print
84
+
"RUF100", # unused-noqa
85
+
]
86
+
87
+
88
+
[lint.per-file-ignores]
89
+
"**/__init__.py" = ["D104"] # Missing docstring in public package
90
+
"scripts/*" = [
91
+
"FBT003", # boolean-positional-value-in-call (needed for typer default arg)
0 commit comments