forked from EinariTuukkanen/telegram-bots
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.pylintrc
More file actions
30 lines (28 loc) · 692 Bytes
/
.pylintrc
File metadata and controls
30 lines (28 loc) · 692 Bytes
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
[BASIC]
argument-rgx=[a-z_][a-z0-9_]{0,30}
attr-rgx=[a-z_][a-z0-9_]{0,30}
const-rgx=[a-z_][a-z0-9_]{0,30}
variable-rgx=[a-z_][a-z0-9_]{0,30}
[FORMAT]
max-line-length=120
[MESSAGES CONTROL]
disable=
arguments-differ,
consider-using-with,
fixme,
missing-class-docstring,
missing-function-docstring,
missing-final-newline,
missing-module-docstring,
no-else-return,
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-nested-blocks,
too-many-return-statements,
too-many-statements,
unnecessary-pass,