-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
20 lines (19 loc) · 1.01 KB
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[MASTER]
# We whitelist `pydantic` since it is genreating import errors that are
# incorrect. More information about this issue can be found on GitHub:
# https://github.com/pydantic/pydantic/issues/1961
extension-pkg-whitelist=pydantic
[MESSAGES CONTROL]
# The `disable-many-arguments` error is displayed when a function has too many
# arguments (more then 5). This is not feasible for the ResourceManager right
# now, since it needs to recieve the objects to Create, Retrieve, Update and
# delete resources. We disable it for that specific reason.
#
# The `too-few-public-methods` error is displayed when a classes have too
# little public methods.. We disabled this bacause this triggers errors on
# bases classes that are only there as way to define a standard initiator.
#
# The `too-many-instance-attributes` error is displayed when a class has too
# many instance attributes. We disabled this because this triggers errors on
# after adding logging.
disable=too-many-arguments,too-few-public-methods,too-many-instance-attributes