-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
37 lines (30 loc) · 914 Bytes
/
.pylintrc
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
30
31
32
33
34
35
36
37
# see: https://pylint.pycqa.org/en/latest/messages/messages_list.html
# see: https://pylint.pycqa.org/en/latest/technical_reference/features.html
# see: https://www.getcodeflow.com/pylint-configuration.html
[MASTER]
# List of plugins (as comma separated values of python module names) to load,
# usually to register additional checkers.
load-plugins=pylint_django,pylint.extensions.no_self_use
django-settings-module=config.settings
extension-pkg-whitelist=pydantic
ignore=keystone/migrations
[BASIC]
# Good variable names which should always be accepted, separated by a comma.
good-names=i,
j,
k,
e,
ex,
Run,
_,
rf,
pk,
db,
t0,
dt,
[MESSAGES CONTROL]
disable=missing-module-docstring,
fixme,
too-few-public-methods,
no-self-use,
import-outside-toplevel