Commit | Line | Data |
---|---|---|
d423c187 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 | ||
578f3d77 MJ |
7 | # Disabled warnings for `bt2/__init__.py`: |
8 | # | |
9 | # F401: | |
10 | # Has a bunch of (expectedly) unused imports. | |
11 | # | |
12 | # E402: | |
13 | # Has code to set up the DLL search path before imports. | |
14 | per-file-ignores = src/bindings/python/bt2/bt2/__init__.py:F401,E402 | |
d423c187 SM |
15 | |
16 | exclude = tests/utils/python/tap |