# .flake8 file for https://github.com/zxdavb

[flake8]
  # max-line-length as used by black
  max-line-length = 88
  select = C, E, F, W, B, B950
  ignore = E203, E501, W503
  # E203 whitespace before ':'
  # E501 line too long (?? > 88 characters)
  # W503 line break before binary operator
  # ignore = D101,D102,D103,D105,D107,D207,D202,D401,E203,E231,W503

  # E402 module level import not at top of file
  # F401 'xxxx' imported but unused
  per-file-ignores =
    client.py:E402
    */__init__.py: F401
    */const.py:F401
