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.

11 lines
441 B

  1. [flake8]
  2. # E123,E133,E226,E241,E242 are ignored by default by pep8 and flake8
  3. # F811 is legal in odoo 8 when we implement 2 interfaces for a method
  4. # F601 pylint support this case with expected tests
  5. # W503 changed by W504 and OCA prefers allow both
  6. # E203: whitespace before ':' (black behaviour and not pep8 compliant)
  7. ignore = E123,E133,E226,E241,E242,F811,F601,W503,W504,E203
  8. max-line-length = 88
  9. per-file-ignores=
  10. __init__.py:F401