bidict/.pylintrc

12 lines
355 B
INI

# https://docs.pylint.org/en/latest/technical_reference/features.html
[MESSAGES CONTROL]
# Maximum number of parents for a class.
# The default of 7 results in "too-many-ancestors" for all bidict classes.
max-parents = 12
# Maximum number of arguments for a function.
# The default of 5 only leaves room for 4 args besides self for methods.
max-args=6