Skip to content

Commit

Permalink
DEV: Disaggregate a Ruff rule (#3094)
Browse files Browse the repository at this point in the history
  • Loading branch information
j-t-1 authored Jan 30, 2025
1 parent d67e807 commit 33da49f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"A", # Variable is shadowing a built-in
"A001", # Variable is shadowing a Python builtin
"A002", # Function argument is shadowing a Python builtin
"ANN204", # Missing return type annotation for special method `__init__`
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed
"ARG001", # Unused function argument
Expand Down

0 comments on commit 33da49f

Please sign in to comment.