mirror of https://github.com/jab/bidict.git
15 lines
429 B
INI
15 lines
429 B
INI
# https://docs.pylint.org/en/latest/technical_reference/features.html
|
|
|
|
[MESSAGES CONTROL]
|
|
|
|
# bidict/_version.py is generated by setuptools_scm
|
|
ignore = _version.py
|
|
|
|
# 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
|