Skip to content
Snippets Groups Projects
Commit a70c12d0 authored by roadscape's avatar roadscape
Browse files

pylint - disable dupe code checks

parent c73597f9
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
# duplicate-code disabled due to https://github.com/PyCQA/pylint/issues/214
# (bridge_api warnings cannot be selectively disabled)
if [ -z "$1" ]
then
pylint hive/**/*.py -f colorized -r n
pylint hive/**/*.py -f colorized -r n -d duplicate-code
grep -r --color=always 'pylint: disable' hive
else
pylint $1 -f colorized -r n
pylint $1 -f colorized -r n -d duplicate-code
grep -r --color=always 'pylint: disable' $1
fi
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