12345678910111213141516171819202122232425262728293031323334353637 |
- [flake8]
- ignore =
- # continuation line missing indentation or outdented
- E122,
- # line too long
- E501,
- # Ignore all flake8 errors for now. Whoever wants to fixup our code (PLEASE),
- # remove one, fixup all occurences, submit a merge request...
- E123,
- E124,
- E125,
- E126,
- E127,
- E128,
- E129,
- E241,
- E261,
- E265,
- E266,
- E305,
- E306,
- E402,
- E722,
- E731,
- E741,
- E999,
- F401,
- F403,
- F405,
- F812,
- F821,
- F841,
- W291,
- W293,
- W391,
- W503
|