mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-07 07:41:35 +00:00
Per: https://pylint.pycqa.org/en/latest/user_guide/messages/refactor/old-no-self-use.html R0201 was renamed → R6301
32 lines
887 B
INI
32 lines
887 B
INI
[MASTER]
|
|
ignore=CVS .git .hg
|
|
init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.append(os.path.dirname(find_pylintrc()))"
|
|
|
|
[MESSAGES CONTROL]
|
|
# Pointless whinging.
|
|
# W0613 = Unused argument
|
|
# R0801 = Similar lines https://github.com/PyCQA/pylint/issues/214
|
|
# R0901 = Too many ancestors
|
|
# R0902 = Too many instance attributes
|
|
# R0903 = Too few public methods
|
|
# R0904 = Too many public methods
|
|
# R0911 = Too many return statements
|
|
# R0913 = Too many arguments
|
|
# R0914 = Too many local variables
|
|
#
|
|
# Sometimes disabled depending on how bad a module is.
|
|
# C0103 = Module name doesn't conform to snake_case naming style
|
|
# C0111 = Missing docstring
|
|
# C0112 = Empty docstring
|
|
|
|
disable=C0103,C0111,R0801,R0901,R0902,R0903,R0904,R0911,R0913,R0914
|
|
|
|
[FORMAT]
|
|
max-line-length=80
|
|
|
|
[REPORTS]
|
|
output-format=colorized
|
|
|
|
[BASIC]
|
|
good-names=i,j,k,_,logger
|