mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
Also ignore PEP8 W503
This commit is contained in:
parent
9be0d35bd1
commit
8510961db9
1 changed files with 4 additions and 1 deletions
|
@ -17,8 +17,11 @@ RB_FILES="buildserver/cookbooks/*/recipes/*.rb"
|
||||||
# * 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
|
||||||
# - Some lines are awkward to wrap around a char limit
|
# - Some lines are awkward to wrap around a char limit
|
||||||
|
# * W503: line break before binary operator
|
||||||
|
# - It's quite new
|
||||||
|
# - Quite pedantic
|
||||||
|
|
||||||
PEP8_IGNORE="E123,E133,E226,E241,E242,E501"
|
PEP8_IGNORE="E123,E133,E226,E241,E242,E501,W503"
|
||||||
|
|
||||||
err() {
|
err() {
|
||||||
echo ERROR: "$@"
|
echo ERROR: "$@"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue