Commit | Line | Data |
---|---|---|
f641029a SM |
1 | [flake8] |
2 | # E501: line too long | |
3 | # W503: line break before binary operator (conflicts with black's way of | |
4 | # formatting) | |
5 | ignore = E501,W503 | |
6 | ||
7 | # __init__.py has a bunch of (expectedly) unused imports, so disable that | |
8 | # warning for this file. | |
9 | per-file-ignores = src/bindings/python/bt2/bt2/__init__.py:F401 | |
10 | ||
11 | exclude = tests/utils/python/tap |