Skip to content

Commit

Permalink
build: Enable PyLint rules that already pass successfully
Browse files Browse the repository at this point in the history
Related to #1755 

Thank you to Manual (@feman323) for this contribution.
  • Loading branch information
feman323 authored Jul 8, 2024
1 parent ba50bf9 commit fa40299
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions common/test/test_lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,22 +95,22 @@ def test_with_pylint(self):
'W1301', # unused-format-string-key
'W1401', # anomalous-backslash-in-string (invalid escape sequence)
'W1515', # forgotten-debug-statement
'R0201', # no-self-use
'R0202', # no-classmethod-decorator
'R0203', # no-staticmethod-decorator
'W0404', # reimported
'W4902', # deprecated-method
'W4904', # deprecated-class
'W0614', # unused-wildcard-import

# Enable asap. This list is selection of existing (not all!)
# problems currently exiting in the BIT code base. Quit easy to fix
# because there count is low.
# 'R0201', # no-self-use
# 'R0202', # no-classmethod-decorator
# 'R0203', # no-staticmethod-decorator
# 'R0801', # duplicate-code
# 'W0123', # eval-used
# 'W0237', # arguments-renamed
# 'W0221', # arguments-differ
# 'W0404', # reimported
# 'W4902', # deprecated-method
# 'W4904', # deprecated-class
# 'W0603', # global-statement
# 'W0614', # unused-wildcard-import
# 'W0612', # unused-variable
# 'W0707', # raise-missing-from
]
Expand Down

0 comments on commit fa40299

Please sign in to comment.