Skip to content

Commit e227ea8

Browse files
committed
convert decrypt oracle tests pylintrc to use readable names
1 parent c0e7a42 commit e227ea8

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

decrypt_oracle/test/pylintrc

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
[MESSAGES CONTROL]
22
# Disabling messages that we either don't care about for tests or are necessary to break for tests.
3-
#
4-
# C0103 : invalid-name (we prefer long, descriptive, names for tests)
5-
# C0111 : missing-docstring (we don't write docstrings for tests)
6-
# C0330 : bad-continuation (we let black handle this)
7-
# C0412 : ungrouped-imports (we let isort handle this)
8-
disable = C0103, C0111, C0330, C0412
3+
disable =
4+
invalid-name, # we prefer long, descriptive, names for tests
5+
missing-docstring, # we don't write docstrings for tests
6+
bad-continuation, # we let black handle this
7+
ungrouped-imports, # we let isort handle this
98

109
[FORMAT]
1110
max-line-length = 120

0 commit comments

Comments
 (0)