[flake8]
exclude = __init__.py
max-line-length = 80
ignore =
  # whitespace before ':' (conflict with black)
  E203,
  # Line too long
  E501,
  # do not use bare 'except'
  E722,
  # line break before binary operator
  W503,
  # line break after binary operator
  W504

select =
  # mccabe code complexity
  C,
  # pycodestyle error
  E,
  # pycodestyle warning
  W,
  # pyflakes fatals
  F,
  # B # bugbear default checks
  # B950 # bugbear opinonated warning (Line too long: max-line-length + 10%)
