-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
48 lines (42 loc) · 1.38 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
[MASTER]
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code.
extension-pkg-whitelist=
# Add files or directories to the blacklist. They should be base names, not
# paths.
ignore=venv,migrations
# Add files or directories matching the regex patterns to the blacklist. The
# regex matches against base names, not paths.
ignore-patterns=
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
# number of processors available to use.
jobs=1
# List of plugins (as comma separated values of python module names) to load,
# usually to register additional checkers.
load-plugins=pylint_django
[MESSAGES CONTROL]
disable=print-statement,
missing-function-docstring,
missing-module-docstring,
missing-class-docstring,
line-too-long,
invalid-name,
unused-argument,
too-many-locals,
too-many-statements,
too-many-instance-arguments,
too-few-public-methods,
bad-indentation,
bad-continuation,
import-error,
wildcard-import,
no-self-use,
duplicate-code,
wrong-import-position,
no-member,
too-many-arguments,
too-many-instance-attributes,
unused-import,
too-many-lines,
fixme, # no TODOs