Skip to content

Commit 0373a4d

Browse files
committed
chore: add .pylintrc to globally suppress C0103 and W0718
1 parent fc0e0fc commit 0373a4d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.pylintrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[MASTER]
2+
disable=
3+
# Plugin file names use dashes (e.g. "cpu-usage", "ipmi-sel") which is correct
4+
# for CLI tools but violates Python's snake_case module naming convention.
5+
C0103,
6+
# Every plugin uses "except Exception: lib.base.cu()" as a top-level safety net.
7+
# This is intentional and consistent across all plugins.
8+
W0718,

0 commit comments

Comments
 (0)