[flake8]
max-line-length = 89
ignore = (
    E741, # 'ambiguous variable names' forbids using 'I', 'O' or 'l'
    W503, # 'line break before binary operator', but this is allowed and useful inside brackets
    E203, # 'whitespace before ':'', but black formats some slice expressions with space before ':'
    E231, # missing whitespace after ',', but black formats some expressions without space after ','
)
exclude =
    hypnotoad/gui/hypnotoad_mainWindow.py,
    hypnotoad/gui/hypnotoad_preferences.py,
    hypnotoad/gui/__init__.py
    hypnotoad/__version__.py
    versioneer.py
