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

resolve inconsistency between lint.sh and setup.cfg #1509

Merged
merged 1 commit into from
Mar 17, 2023
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
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ filterwarnings =
ignore::PendingDeprecationWarning
ignore::FutureWarning
[flake8]
max-line-length = 80
max-doc-length = 200
# Allow --max-line-length=200 to support long links in docstrings
max-line-length = 200
per-file-ignores =
./keras_cv/__init__.py:E402, F401
./examples/**/*:E402
Expand Down
3 changes: 1 addition & 2 deletions shell/lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ then
fi
[ $# -eq 0 ] && echo "no issues with isort"

# Allow --max-line-length=200 to support long links in docstrings
flake8 --max-line-length=200 $files
flake8 $files
if ! [ $? -eq 0 ]
then
echo "Please fix the code style issue."
Expand Down