We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0e7a42 commit e227ea8Copy full SHA for e227ea8
decrypt_oracle/test/pylintrc
@@ -1,11 +1,10 @@
1
[MESSAGES CONTROL]
2
# 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
+disable =
+ invalid-name, # we prefer long, descriptive, names for tests
+ missing-docstring, # we don't write docstrings for tests
+ bad-continuation, # we let black handle this
+ ungrouped-imports, # we let isort handle this
9
10
[FORMAT]
11
max-line-length = 120
0 commit comments