Skip to content

Commit

Permalink
fix: add ignores to pycodestyle and pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
1138-4EB committed Sep 24, 2019
1 parent d5f6e74 commit 6442ffd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vunit/test/lint/pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion vunit/test/lint/test_pycodestyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
)
Expand Down

0 comments on commit 6442ffd

Please sign in to comment.