1
Fork 0

ignore E123 in autopep8, too

This commit is contained in:
Dustin J. Mitchell 2014-04-20 09:09:30 -04:00
parent 8031fc1df5
commit 5e9063e6da
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ else
for filename in ${py_files[@]}; do
LINEWIDTH=$(grep -E "max-line-length" common/pep8rc | sed 's/ //g' | cut -d'=' -f 2)
# even if we dont enforce errors, if they can be fixed automatically, thats better..
IGNORES=E501,W6
IGNORES=E123,E501,W6
# ignore is not None for SQLAlchemy code..
if [[ "$filename" =~ "/db/" ]]; then
IGNORES=$IGNORES,E711,E712