# Options for autopep8 formatter

# "autopep8 --list-fixes" for the codes used by --ignore and --select
# E203 - Remove extraneous whitespace around colon (libastyle).
# E221 - Remove extraneous whitespace around equal (libastyle, libastylewx).
# E265 - Block comments should have a space after #.
# E302 - Add missing 2 blank lines at end of function.
# E305 - New code sometimes adds 2 blank lines
# E501 - Try to make lines fit within --max-line-length characters.
# W503 - Break after a binary operator, issues a warning if break before.
#        Warning if "if ... \n or ..." instead of "if ... or \n ...".

# When these are changed, also change VS Code setting "python.formatting.autopep8Args"
[autopep8]
aggressive
aggressive
ignore=E203,E221,E265,E302,E305,E501,W503
max-line-length=110
