Fixing flake8 E121, E122, E123, E124, E125, E126 errors

This commit is contained in:
Lukasz Langa
2016-12-19 23:53:19 -08:00
parent 67e38b6806
commit 6b5c6626d6
33 changed files with 354 additions and 286 deletions
+5 -15
View File
@@ -9,40 +9,30 @@
# 427 F811 redefinition
# 356 E305 expected 2 blank lines
# Nice-to-haves ignored for now
# 221 E128 continuation line under-indented for visual indent
# 44 E127 continuation line over-indented for visual indent
[flake8]
ignore = F401, F811, E301, E302, E305, E501, E701, E704
ignore = F401, F811, E127, E128, E301, E302, E305, E501, E701, E704
# Errors that we need to fix before enabling flake8 by default:
# 921 F821 undefined name
# 221 E128 continuation line under-indented for visual indent
# 213 E231 missing whitespace after , or :
# 85 E266 too many leading ### in a block comment
# 59 E265 block comment should start with #
# 52 E402 module-level import not at top of file
# 48 E225 missing whitespace around operator
# 44 E127 continuation line over-indented for visual indent
# 37 E126 continuation line over-indented for hanging indent
# 30 E124 closing bracket does not match visual indentation
# 28 E116 unexpected indentation (comment)
# 26 F403 from * import used
# 20 E101 mixed spaces and tabs
# 14 E251 unexpected spaces around keyword argument '='
# 14 E203 whitespace before
# 8 B006 mutable argument defaults
# 7 E999 invalid syntax
# 7 E111 indentation is not a multiple of four
# 5 F405 name undefined or from * imports
# 5 E123 closing bracket does not match indentation of opening bracket
# 4 E262 inline comment should start with #
# 4 E121 continuation line under-indented for hanging indent
# 4 E114 indentation is not a multiple of four
# 3 E303 too many blank lines
# 3 E125 continuation line with same indent as next logical line
# 2 E241 multiple spaces after ,
# 2 E131 continuation line unaligned for hanging indent
# 2 B303 __metaclass__ use on Python 3
# 1 E401 multiple imports on one line
# 1 E202 whitespace before )
#
# Those error codes are disabled by default in pycodestyle:
# E121, E123, E126, E241