[flake8]
# Ignore style and complexity
# E: style errors
# W: style warnings
# C: complexity
# D: docstring warnings (unused pydocstyle extension)
# F841: local variable assigned but never used
# So right now with the settings below it won't highlight
# every long line etc. this would allow us to fix things and
# slowly implement a more rigourous check
ignore = E, C, W, D, F841
builtins = c, get_config
exclude =
    .github,
    docs
