File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ ignore = [
5959 " FBT" ,
6060 " FIX002" ,
6161 " PLR0913" , # I think it makes sense for functions here to have more arguments
62- " S101" , # Remove once asserts are converted to exceptions
6362 " TD002" ,
6463 " TD003" ,
6564]
Original file line number Diff line number Diff line change @@ -6,10 +6,11 @@ src = ["../src"]
66
77[tool .ruff .lint ]
88ignore = [
9- " D" , # Not adding docstrings to unit tests
10- " ANN" , # Not adding type hints to unit tests
11- " ARG" , # Mocks can be unused arguments
12- " INP001" , # __init__.py here seems unnecessary
9+ " D" , # Not adding docstrings to unit tests
10+ " ANN" , # Not adding type hints to unit tests
11+ " ARG" , # Mocks can be unused arguments
12+ " INP001" , # __init__.py here seems unnecessary
1313 " PT013" , # Kinda don't care, maybe fix one day
1414 " PT019" , # Regular "patch" seems fine
15+ " S101" , # Keep asserts in unit tests
1516]
You can’t perform that action at this time.
0 commit comments