2018-02-20 10:23:04 +00:00
|
|
|
# https://docs.pylint.org/en/latest/technical_reference/features.html
|
|
|
|
|
2017-11-16 20:44:51 +00:00
|
|
|
[MESSAGES CONTROL]
|
2019-01-31 04:53:48 +00:00
|
|
|
disable =
|
2020-07-30 13:31:03 +00:00
|
|
|
invalid-name,
|
|
|
|
no-member,
|
|
|
|
too-few-public-methods,
|
2020-08-01 13:44:09 +00:00
|
|
|
protected-access,
|
2020-07-30 13:31:03 +00:00
|
|
|
isinstance-second-argument-not-valid-type, # https://github.com/PyCQA/pylint/issues/3507
|
2017-11-16 20:44:51 +00:00
|
|
|
|
2018-02-25 23:44:21 +00:00
|
|
|
# bidict/_version.py is generated by setuptools_scm
|
|
|
|
ignore = _version.py
|
|
|
|
|
2018-02-20 10:23:04 +00:00
|
|
|
# Maximum number of parents for a class.
|
|
|
|
# The default of 7 results in "too-many-ancestors" for all bidict classes.
|
2018-04-25 14:34:27 +00:00
|
|
|
max-parents = 13
|
2018-02-20 10:23:04 +00:00
|
|
|
|
|
|
|
# Maximum number of arguments for a function.
|
|
|
|
# The default of 5 only leaves room for 4 args besides self for methods.
|
|
|
|
max-args=6
|
2020-07-30 13:31:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
[FORMAT]
|
|
|
|
max-line-length=125
|