forked from green-coding-solutions/green-metrics-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
41 lines (34 loc) · 827 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
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=120
[MESSAGES CONTROL]
disable=missing-function-docstring,
missing-module-docstring,
missing-class-docstring,
too-few-public-methods,
duplicate-code,
too-many-nested-blocks,
line-too-long,
too-many-boolean-expressions,
too-many-nested-blocks,
line-too-long,
protected-access,
too-many-lines,
multiple-statements,
pointless-string-statement,
too-many-locals,
too-many-public-methods,
too-many-branches,
too-many-statements,
too-many-arguments,
too-many-return-statements,
too-many-instance-attributes,
invalid-name,
wrong-import-position,
wrong-import-order,
ungrouped-imports,
fixme
[MASTER]
ignore=env
ignore-patterns=^env.*
ignore-paths=^env.*$