@@ -499,7 +499,6 @@ ignore = [
499499 " PLR0915" , # Too many statements ({statements} > {max_statements})
500500 " PLR2004" , # Magic value used in comparison, consider replacing {value} with a constant variable
501501 " PLW2901" , # Outer {outer_kind} variable {name} overwritten by inner {inner_kind} target
502- " PT004" , # Fixture {fixture} does not return anything, add leading underscore
503502 " PT011" , # pytest.raises({exception}) is too broad, set the `match` parameter or use a more specific exception
504503 " PT018" , # Assertion should be broken down into multiple parts
505504 " RUF001" , # String contains ambiguous unicode character.
@@ -512,9 +511,9 @@ ignore = [
512511 " SIM115" , # Use context handler for opening files
513512
514513 # Moving imports into type-checking blocks can mess with pytest.patch()
515- " TCH001 " , # Move application import {} into a type-checking block
516- " TCH002 " , # Move third-party import {} into a type-checking block
517- " TCH003 " , # Move standard library import {} into a type-checking block
514+ " TC001 " , # Move application import {} into a type-checking block
515+ " TC002 " , # Move third-party import {} into a type-checking block
516+ " TC003 " , # Move standard library import {} into a type-checking block
518517
519518 " TRY003" , # Avoid specifying long messages outside the exception class
520519 " TRY400" , # Use `logging.exception` instead of `logging.error`
@@ -531,7 +530,6 @@ ignore = [
531530 " Q" ,
532531 " COM812" ,
533532 " COM819" ,
534- " ISC001" ,
535533
536534 # Disabled because ruff does not understand type of __all__ generated by a function
537535 " PLE0605"
0 commit comments