Skip to content

Commit

Permalink
pylint: Add project configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
mwutzke committed Jul 24, 2021
1 parent ad11a70 commit f09bb03
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[MASTER]
# enable=all

[FORMAT]
max-line-length=120
6 changes: 6 additions & 0 deletions tests/codecheck/min_pylint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ set -euo pipefail

MINRATING=9.50

SCRIPTPATH=$(readlink -f "$0")
TESTDIR=$(dirname "${SCRIPTPATH}")
BASEDIR=$(readlink -f "${TESTDIR}/../..")

export PYLINTRC=$(readlink -f "$BASEDIR/.pylintrc")

for file in "$@" ; do
echo ""
echo "------------------------------------------------------------------"
Expand Down

0 comments on commit f09bb03

Please sign in to comment.