diff --git a/python/flake8.ini b/python/flake8.ini index 041fdb7..a1cbee9 100644 --- a/python/flake8.ini +++ b/python/flake8.ini @@ -31,6 +31,14 @@ ignore = E121 # Hanging indent on a continuation line is unaligned E131 + # Whitespace before a comma + E203 + # Multiple spaces before an operator + E221 + # Multiple spaces after an operator + E222 + # Whitespace after a comma + E241 # Import not at the top of the file E402 # Line too long