[MAIN]
reports=no
jobs=2

good-names=id,i,j,k,ex,Run,_,fp,T

# Reasons disabled:
# format - handled by black
# locally-disabled - it spams too much
# duplicate-code - unavoidable
# unused-argument - generic callbacks and setup methods create a lot of warnings
# too-many-* - are not enforced for the sake of readability
# too-few-* - same as too-many-*
disable=
  format,
  duplicate-code,
  locally-disabled,
  too-few-public-methods,
  too-many-public-methods,
  unused-argument,

[DESIGN]

max-args=9
max-attributes=9
