First of all, once again, I'd like to thank you for a great library.
The recently added RUF012 rule warns with false positives for classes that extend a Pydantic model.
from pydantic import BaseModel
class A(BaseModel):
lst = []
class B(A):
lst2 = [] # RUF012
Ruff version: ruff 0.0.277