File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -60,8 +60,6 @@ reports = true
6060
6161[tool .pylint .'MESSAGES CONTROL' ]
6262disable = [
63- # 'C0103', # Variable name doesn't conform to snake_case naming style (invalid-name)
64- # 'C0116', # Missing function or method docstring (missing-function-docstring)
6563 ' C0302' , # Too many lines in module (too-many-lines)
6664 ' R0902' , # Too many instance attributes (too-many-instance-attributes)
6765 ' R0912' , # Too many branches (too-many-branches)
@@ -70,5 +68,10 @@ disable = [
7068 ' R0915' , # Too many statements (too-many-statements)
7169 ' R0917' , # Too many positional arguments (too-many-positional-arguments)
7270 ' W0613' , # Unused argument (unused-argument)
73- # 'W1203', # Use lazy % formatting in logging functions (logging-fstring-interpolation)
71+
72+ # TODO: the items below should be checked and corrected
73+ ' C0103' , # Variable name doesn't conform to snake_case naming style (invalid-name)
74+ ' C0116' , # Missing function or method docstring (missing-function-docstring)
75+ ' W0511' , # TODO / fixme (fixme)
76+ ' W1203' , # Use lazy % formatting in logging functions (logging-fstring-interpolation)
7477]
You can’t perform that action at this time.
0 commit comments