Skip to content
Snippets Groups Projects
Commit b8d70abd authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Enable wildcard-import pylint check

parent 7ef066b1
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
PYLINT=${PYLINT:-pylint}
"$PYLINT" --disable=C0103,C0302,C0301,C0330,E0203,E0401,E0611,E0710,E0712,E1101,E1102,E1133,E1136,R0201,R0901,R0904,R0912,R0913,R0914,R0915,R0916,R1702,R1710,W0201,W0212,W0221,W0223,W0231,W0233,W0311,W0401,W0603,W0613 "$@"
"$PYLINT" --disable=C0103,C0302,C0301,C0330,E0203,E0401,E0611,E0710,E0712,E1101,E1102,E1133,E1136,R0201,R0901,R0904,R0912,R0913,R0914,R0915,R0916,R1702,R1710,W0201,W0212,W0221,W0223,W0231,W0233,W0311,W0603,W0613 "$@"
# C0103 invalid-name
# C0301 line-too-long
......@@ -33,6 +33,5 @@ PYLINT=${PYLINT:-pylint}
# W0231 super-init-not-called
# W0233 non-parent-init-called
# W0311 bad-indentation
# W0401 wildcard-import
# W0603 global-statement
# W0613 unused-argument
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment