-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpylintrc
More file actions
37 lines (31 loc) · 744 Bytes
/
Copy pathpylintrc
File metadata and controls
37 lines (31 loc) · 744 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
31
32
33
34
35
36
37
[MAIN]
recursive = y
source-roots = src
const-naming-style = any
ignore-paths =
src/test*.py
disable =
missing-module-docstring,
missing-function-docstring,
missing-class-docstring,
redefined-outer-name,
unspecified-encoding,
import-outside-toplevel,
protected-access, # TODO: delete
broad-exception-caught,
super-init-not-called,
too-few-public-methods,
too-many-instance-attributes,
too-many-positional-arguments,
too-many-locals,
redefined-builtin,
unnecessary-lambda,
too-many-arguments,
too-many-return-statements,
too-many-branches,
too-many-statements,
too-many-lines,
inconsistent-return-statements,
fixme
[DESIGN]
min-public-methods = 1