-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
65 lines (54 loc) · 1.72 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[MASTER]
ignore=migrations
jobs=0
suggestion-mode=yes
# Enable the plugins
load-plugins=pylint_django,
pylint_pytest,
pylint_quotes,
pylint.extensions.docstyle,
pylint.extensions.docparams,
accept-no-param-doc=no
default-docstring-type=google
ignored-modules=invoke
string-quote=double
triple-quote=double
docstring-quote=double
# Settings not configured because of
# `config/__init__.py` that imports celery app, that configure settings
# by itself
# django-settings-module=config.settings.local
[MESSAGES CONTROL]
disable:no-self-use,
too-few-public-methods,
missing-return-doc,
missing-return-type-doc,
missing-any-param-doc,
missing-param-doc,
missing-type-doc,
missing-module-docstring,
too-many-ancestors,
import-outside-toplevel,
unsupported-binary-operation,
keyword-arg-before-vararg,
logging-fstring-interpolation,
fixme,
unspecified-encoding
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=79
ignore-long-lines=<?https?://
[REPORTS]
score=yes
# Set the output format. Available formats are text, parseable, colorized, msvs
# (visual studio) and html
output-format=parseable
# Template used to display messages. This is a python new-style format string
# used to format the message information. See doc for all details.
msg-template='{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}'
# Tells whether to display a full report or only the messages
reports=n
ignored-argument-names=args|kwargs
# Regular expression which should only match functions or classes name which do
# not require a docstring
no-docstring-rgx=^_|__init__|Meta|__str__|unicode