File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,7 +60,8 @@ reports = true
6060
6161[tool .pylint .'MESSAGES CONTROL' ]
6262disable = [
63- ' C0116' , # Missing function or method docstring (missing-function-docstring)
63+ # 'C0103', # Variable name doesn't conform to snake_case naming style (invalid-name)
64+ # 'C0116', # Missing function or method docstring (missing-function-docstring)
6465 ' C0302' , # Too many lines in module (too-many-lines)
6566 ' R0902' , # Too many instance attributes (too-many-instance-attributes)
6667 ' R0912' , # Too many branches (too-many-branches)
@@ -69,5 +70,5 @@ disable = [
6970 ' R0915' , # Too many statements (too-many-statements)
7071 ' R0917' , # Too many positional arguments (too-many-positional-arguments)
7172 ' W0613' , # Unused argument (unused-argument)
72- ' W1203' , # Use lazy % formatting in logging functions (logging-fstring-interpolation)
73+ # 'W1203', # Use lazy % formatting in logging functions (logging-fstring-interpolation)
7374]
You can’t perform that action at this time.
0 commit comments