[flake8]
max-line-length: 90
extend-ignore =
    # E116 Unexpected indentation (comment)
    # E117 Over-indented
    # E127 Continuation line over-indented for visual indent
    # E128 Continuation line under-indented for visual indent
    # E129 Visually indented line with same indent as next logical line
    # E202 Whitespace before ')'
    # E203 Whitespace before ':'
    # E221 Multiple spaces before operator
    # E261 At least two spaces before inline comment
    # E302 Expected 2 blank lines, found 0
    # E305 Expected 2 blank lines after end of function or class
    E116, E117, E127, E128, E129, E202, E203, E221, E261, E302, E305

per-file-ignores =
    # E501 Line too long (82 > 79 characters)
    pds3table.py: E501
    # E501 Line too long (82 > 79 characters)
    test_pdstemplate.py: E501

# E111 Indentation is not a multiple of four
# E114 Indentation is not a multiple of four (comment)
# E115 Expected an indented block (comment)
# E116 Unexpected indentation (comment)
# E117 Over-indented
# E121 Continuation line under-indented for hanging indent
# E122 Continuation line missing indentation or outdented
# E124 Closing bracket does not match visual indentation
# E126 Continuation line over-indented for hanging indent
# E127 Continuation line over-indented for visual indent
# E128 Continuation line under-indented for visual indent
# E129 Visually indented line with same indent as next logical line
# E131 Continuation line unaligned for hanging indent
# E201 Whitespace after '('
# E202 Whitespace before ')'
# E203 Whitespace before ':'
# E211 Whitespace before '('
# E221 Multiple spaces before operator
# E222 Multiple spaces after operator
# E225 Missing whitespace around operator
# E226 Missing whitespace around arithmetic operator
# E227 Missing whitespace around bitwise or shift operator
# E228 Missing whitespace around modulo operator
# E231 Missing whitespace after ',', ';', or ':'
# E241 Multiple spaces after ','
# E251 Unexpected spaces around keyword / parameter equals
# E261 At least two spaces before inline comment
# E262 Inline comment should start with '# '
# E265 Block comment should start with '# '
# E266 Too many leading '#' for block comment
# E272 Multiple spaces before keyword
# E302 Expected 2 blank lines, found 0
# E303 Too many blank lines (3)
# E305 Expected 2 blank lines after end of function or class
# E402 Module level import not at top of file
# E501 Line too long (82 > 79 characters)
# E741 Do not use variables named 'I', 'O', or 'l'
# F401 module imported but unused
