Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pylint update to 3.0.0 #6

Merged
merged 2 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions check-lint
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

TOOL_CMD=pylint
PATH=$(basename $0)/utils:$PATH
TOOL_PATH=$(which pylint-3 2>/dev/null || which pylint)
CONFIG_PATH="$(dirname $0)/default_configs/pylintrc"
FILES=$(git ls-files '*.py')

echo "** Running $TOOL_CMD ($TOOL_PATH using config from $CONFIG_PATH)..."
$TOOL_PATH --rcfile=$CONFIG_PATH $FILES
echo "** Running $TOOL_CMD (using config from $CONFIG_PATH)..."
python3 -m pylint --rcfile=$CONFIG_PATH $FILES
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
isort==5.10.1
black==22.3.0
pylint==2.17.2
pylint==3.0.0
Loading