Skip to content

Commit e3b7c3e

Browse files
committed
update pylint config
1 parent 1d254b3 commit e3b7c3e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ reports = true
6060

6161
[tool.pylint.'MESSAGES CONTROL']
6262
disable = [
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
]

0 commit comments

Comments
 (0)