-
Notifications
You must be signed in to change notification settings - Fork 1
/
pylintrc
23 lines (23 loc) · 888 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
[MESSAGES CONTROL]
# W0142 -- Used * or ** magic
# W0603 -- Using the global statement
# W0613 -- Unused argument
# W0702 -- No exception type(s) specified
# W0703 -- Catching too general exception Exception
# C0103 -- Invalid variable name
# C0111 -- Missing docstring
# C0301 -- Line too long
# C0322 -- Wrong continued indentation
# C0330 -- Wrong hanging indentation
# R0201 -- Method could be a function
# R0801 -- Similar lines (enabled later)
# R0901 -- Too many ancestors
# R0902 -- Too many instance attributes
# R0903 -- Too few public methods
# R0904 -- Too many public methods
# R0912 -- Too many branches
# R0913 -- Too many arguments
# R0914 -- Too many local variables
# R0204 -- Redefinition of variable type
# I0011 -- Locally disabling
disable=W0142,W0603,W0613,W0702,W0703,C0103,C0111,C0301,C0322,C0330,R0201,R0801,R0901,R0902,R0903,R0904,R0912,R0913,R0914,R0204,I0011