blob: 1df94c3099aee181c2a3cb9868eb072d99656c23 [file] [log] [blame]
[flake8]
# E121 continuation line under-indented for hanging indent
# E123 closing bracket does not match indentation of opening bracket's line
# E129 visually indented line with same indent as next logical line
# E203 whitespace before ':'
# E402 module level import not at top of file
# W503 line break before binary operator
ignore = E121,E123,E129,E203,E402,W503
max-line-length = 100