2018-02-14 22:19:18 +02:00
|
|
|
[pylint]
|
|
|
|
max-line-length = 100
|
|
|
|
max-args = 8
|
2018-01-06 01:58:53 +02:00
|
|
|
|
2018-02-14 22:19:18 +02:00
|
|
|
[messages control]
|
|
|
|
disable =
|
2018-08-09 14:39:02 +03:00
|
|
|
duplicate-code, # Meh.
|
|
|
|
too-few-public-methods, # Namespaces are great. (c)
|
|
|
|
too-many-public-methods, # Namespaces are really great!
|
|
|
|
too-many-instance-attributes, # Ditto.
|
|
|
|
no-self-use, # Makes code less readable.
|
|
|
|
too-many-ancestors, # Mixins FTW.
|
|
|
|
useless-object-inheritance # Silly pylint, you forgot Python 2.x!
|
2018-01-06 01:58:53 +02:00
|
|
|
|
|
|
|
|
2018-02-14 22:19:18 +02:00
|
|
|
[miscellaneous]
|
2018-01-06 01:58:53 +02:00
|
|
|
# List of note tags to take in consideration, separated by a comma.
|
2018-02-14 22:19:18 +02:00
|
|
|
notes=
|