forked from lemon65/lemon_bot_discord
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pylintrc
50 lines (50 loc) · 1.05 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
[MESSAGES CONTROL]
disable=
anomalous-backslash-in-string,
bad-continuation,
bad-indentation,
bad-whitespace,
broad-except,
deprecated-method,
duplicate-code,
eval-used,
fixme,
global-statement,
import-error,
inconsistent-return-statements,
invalid-name,
len-as-condition,
line-too-long,
logging-format-interpolation,
missing-docstring,
missing-final-newline,
multiple-statements,
no-else-return,
no-self-use,
no-value-for-parameter,
protected-access,
redefined-builtin,
redefined-outer-name,
singleton-comparison,
superfluous-parens,
syntax-error,
too-few-public-methods,
too-many-arguments,
too-many-boolean-expressions,
too-many-branches,
too-many-format-args,
too-many-instance-attributes,
too-many-locals,
too-many-return-statements,
too-many-statements,
trailing-newlines,
trailing-whitespace,
undefined-variable,
ungrouped-imports,
unidiomatic-typecheck,
unused-argument,
unused-import,
unused-variable,
useless-else-on-loop,
wrong-import-order,
wrong-import-position,