Skip to content

Commit 8e8aa6a

Browse files
committed
add some pylint disables, consistent with pose-evaluation
1 parent 787f17a commit 8e8aa6a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/python/pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@ column_limit = 120
6060

6161
[tool.pylint.format]
6262
max-line-length = 120
63+
disable = [
64+
"C0114", # Missing module docstring
65+
"C0115", # Missing class docstring
66+
"C0116", # Missing function or method docstring
67+
"W0511", # TODO
68+
"W1203", # use lazy % formatting in logging functions
69+
]
6370

6471
[project.scripts]
6572
pose_info = "pose_format.bin.pose_info:main"

0 commit comments

Comments
 (0)