forked from rafalp/Misago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
43 lines (36 loc) · 846 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
38
39
40
41
42
43
[MASTER]
load-plugins=pylint_django
ignore=migrations
max-line-length=88
[MESSAGES CONTROL]
disable=
abstract-method,
arguments-differ,
assignment-from-none,
attribute-defined-outside-init,
bad-continuation,
cyclic-import,
duplicate-code,
expression-not-assigned,
fixme,
format, # delegated to black
inconsistent-return-statements,
invalid-name,
missing-docstring,
model-no-explicit-unicode, # pylint-django
no-member,
no-self-use,
protected-access,
redefined-outer-name,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-instance-attributes,
too-many-lines, # FIXME
too-many-public-methods,
too-many-statements, # FIXME
ungrouped-imports,
unsubscriptable-object,
unused-argument
[REPORTS]
reports=no