-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pylintrc
More file actions
30 lines (27 loc) · 790 Bytes
/
Copy path.pylintrc
File metadata and controls
30 lines (27 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[MASTER]
ignore=build,dist,.venv,venv
[TYPECHECK]
# Django models are dynamically populated; pylint can't see managers/managers' methods
# without django-pylint plugin. Suppress the predictable false positives.
generated-members=objects,DoesNotExist,_meta
ignored-classes=django.core.management.color.Style
[MESSAGES CONTROL]
disable=
import-error,
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
invalid-name,
too-few-public-methods,
too-many-arguments,
too-many-instance-attributes,
too-many-locals,
broad-exception-caught,
protected-access,
unused-argument,
unused-import,
duplicate-code,
trailing-newlines,
import-outside-toplevel,
relative-beyond-top-level,
invalid-str-returned