@@ -89,6 +89,8 @@ ignore = [
8989
9090 # Project preference
9191 " ERA001" , # Found commented-out code
92+ " FBT001" , # Boolean-typed positional argument in function definition
93+ " FBT002" , # Boolean-typed positional argument in function definition
9294 " RUF001" , # String contains ambiguous character
9395 " S101" , # Use of assert detected
9496 " TC001" , # Move application import into type checking
@@ -101,11 +103,8 @@ ignore = [
101103 " ANN201" , # Missing return type annotation for public function
102104 " ANN202" , # Missing return type annotation for private function
103105 " ANN204" , # Missing return type annotation for special method
104- " DTZ005" , # The use of `datetime.datetime.now()` without `tz` argument is not allowed
105106 " EM101" , # Exception must not use a string literal, assign to variable first
106107 " EM102" , # Exception must not use an f-string literal, assign to variable first
107- " FBT001" , # Boolean-typed positional argument in function definition
108- " FBT002" , # Boolean-typed positional argument in function definition
109108 " PLR2004" , # Magic value used in comparison
110109 " PTH103" , # `os.makedirs()` should be replaced by `Path.mkdir()`
111110 " PTH104" , # `os.rename()` should be replaced by `Path.rename()`
0 commit comments