You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
317 B

  1. [flake8]
  2. max-line-length = 80
  3. max-complexity = 16
  4. # B = bugbear
  5. # B9 = bugbear opinionated (incl line length)
  6. select = C,E,F,W,B,B9
  7. # E203: whitespace before ':' (black behaviour)
  8. # E501: flake8 line length (covered by bugbear B950)
  9. # W503: line break before binary operator (black behaviour)
  10. ignore = E203,E501,W503