Skip to content

Commit 821b103

Browse files
committed
??? pylint
1 parent b6655ae commit 821b103

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

pyproject.toml

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

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

0 commit comments

Comments
 (0)