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) | |
eda81eee SM |
5 | # E203: Whitespace before ':' (conclicts with black's way of formatting) |
6 | ignore = E501,W503,E203 | |
f641029a | 7 | |
86f24b10 MJ |
8 | # Disabled warnings for `bt2/__init__.py`: |
9 | # | |
10 | # F401: | |
11 | # Has a bunch of (expectedly) unused imports. | |
12 | # | |
13 | # E402: | |
14 | # Has code to set up the DLL search path before imports. | |
15 | per-file-ignores = src/bindings/python/bt2/bt2/__init__.py:F401,E402 | |
f641029a | 16 | |
e612fc1e | 17 | exclude = tests/utils/python/normand.py tests/utils/python/tap tests/utils/python/typing/typing.py |