mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
pep8: Don't ignore rules we already obey
This commit is contained in:
parent
031bb39961
commit
72288345e3
1 changed files with 3 additions and 3 deletions
|
|
@ -46,8 +46,8 @@ else
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# In the default configuration, the checks E123, E133, E226, E241 and E242 are
|
# In the default configuration, the checks E123, E226 ignored because
|
||||||
# ignored because they are not rules unanimously accepted
|
# they are not rules unanimously accepted
|
||||||
# On top of those, we ignore:
|
# On top of those, we ignore:
|
||||||
# * E501: line too long (82 > 79 characters)
|
# * E501: line too long (82 > 79 characters)
|
||||||
# - Recommended for readability but not enforced
|
# - Recommended for readability but not enforced
|
||||||
|
|
@ -56,7 +56,7 @@ fi
|
||||||
# - It's quite new
|
# - It's quite new
|
||||||
# - Quite pedantic
|
# - Quite pedantic
|
||||||
|
|
||||||
PEP8_IGNORE="E123,E133,E226,E241,E242,E501,W503"
|
PEP8_IGNORE="E123,E226,E501,W503"
|
||||||
|
|
||||||
err() {
|
err() {
|
||||||
echo ERROR: "$@"
|
echo ERROR: "$@"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue