diff --git a/vunit/test/lint/pylintrc b/vunit/test/lint/pylintrc index ff3f5c3327..082042fe4c 100644 --- a/vunit/test/lint/pylintrc +++ b/vunit/test/lint/pylintrc @@ -37,7 +37,7 @@ load-plugins= # --disable=W" #disable= disable=too-few-public-methods, locally-disabled, redefined-variable-type, duplicate-code, file-ignored, - useless-object-inheritance, + useless-object-inheritance, bad-continuation, # Failed to suppress this locally in ostools.py subprocess-popen-preexec-fn diff --git a/vunit/test/lint/test_pycodestyle.py b/vunit/test/lint/test_pycodestyle.py index 130c0d0426..fb809ef9eb 100644 --- a/vunit/test/lint/test_pycodestyle.py +++ b/vunit/test/lint/test_pycodestyle.py @@ -33,7 +33,7 @@ def test_pycodestyle(): "--max-line-length=120", # W503 mutually exclusive with W504 # E722 bare except checked by pylint - "--ignore=E402,W503,E722", + "--ignore=E402,W503,E722,E501,E203", ] + get_files_and_folders() )