slotscheck icon indicating copy to clipboard operation
slotscheck copied to clipboard

Ignore classes by using comments

Open ariebovenberg opened this issue 2 years ago • 0 comments

slotscheck should support something like:


# slotscheck: ignore[require-superclass,overlaps]
class A(Base):
    __slots__ = ('a', 'b')

# slotscheck: ignore
class B(Base):
    __slots__ = ()

ariebovenberg avatar Mar 18 '22 06:03 ariebovenberg