init
This commit is contained in:
25
.pylintrc
Executable file
25
.pylintrc
Executable file
@ -0,0 +1,25 @@
|
||||
[MESSAGES CONTROL]
|
||||
|
||||
indent-string=' '
|
||||
|
||||
disable=
|
||||
C0103, # invalid-name
|
||||
C0114, # missing-module-docstring
|
||||
C0115, # missing-class-docstring
|
||||
C0116, # missing-function-docstring
|
||||
C0301, # line-too-long
|
||||
C0326, # bad-whitespace
|
||||
C0330, # bad-continuation
|
||||
E0402, # relative-beyond-top-level
|
||||
R0201, # no-self-use
|
||||
R0801, # duplicate-code
|
||||
R0902, # too-many-instance-attributes
|
||||
R0903, # too-few-public-methods
|
||||
R0911, # too-many-return-statements
|
||||
R0912, # too-many-branches
|
||||
R0913, # too-many-arguments
|
||||
R0914, # too-many-locals
|
||||
R0915, # too-many-statements
|
||||
W0511, # fixme
|
||||
W0603, # global-statement
|
||||
R0022, # useless-option-value
|
Reference in New Issue
Block a user