e.g.
lint.ignore = [
"ANN401", # This is too strict for dunder methods.
"B023", # Prevents using df.loc[lambda _: ...]; too many false positives.
"B024", # This is controversial, ABC's don't always need methods.
"C408", # This is controversial, calls to `dict` can be more idiomatic than {}.
]
lint.ignore = ["ANN401", "B023", "B024", "C408", "ERA001"]
This is a bug.
e.g.
becomes
This is a bug.