FBT001 should probably by default exclude methods used for operator overloading, in particular boolean logic specific operations:
__and__, __rand__, __iand__
__or__, __ror__, __ior__
__xor__, __rxor__, __ixor__
And potentially also arithmetic operations like __add__, __sub__, __mul__, etc. (These may add overloads / type hints for boolean values)
FBT001should probably by default exclude methods used for operator overloading, in particular boolean logic specific operations:__and__,__rand__,__iand____or__,__ror__,__ior____xor__,__rxor__,__ixor__And potentially also arithmetic operations like
__add__,__sub__,__mul__, etc. (These may add overloads / type hints for boolean values)