|
1 | 1 | [flake8] |
2 | 2 | ignore = |
| 3 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): E123, E124 |
3 | 4 | # Closing bracket mismatches opening bracket's line. |
4 | 5 | # This works poorly with type annotations in method declarations. |
5 | 6 | E123, E124 |
6 | 7 | # Line over-indented for visual indent. |
7 | 8 | # This works poorly with type annotations in method declarations. |
| 9 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): E126, E128, E131 |
8 | 10 | E126, E128, E131 |
9 | 11 | # Line break after binary operator. |
10 | 12 | # This catches line breaks after "and" / "or" as a means of breaking up |
11 | 13 | # long if statements, which PEP 8 explicitly encourages. |
| 14 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): W504 |
12 | 15 | W504 |
| 16 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): E203 |
| 17 | + E203 |
| 18 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): E501 |
| 19 | + E501 |
| 20 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): E712 |
| 21 | + E712 |
| 22 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): E711 |
| 23 | + E711 |
| 24 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): E722 |
| 25 | + E722 |
| 26 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): E741 |
| 27 | + E741 |
| 28 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): F401 |
| 29 | + F401 |
| 30 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): F541 |
| 31 | + F541 |
| 32 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): F841 |
| 33 | + F841 |
| 34 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): F811 |
| 35 | + F811 |
| 36 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): W503 |
| 37 | + W503 |
| 38 | + # TODO(https://github.com/googleapis/gapic-generator-python/issues/2333): W291 |
| 39 | + W291 |
| 40 | +exclude = |
| 41 | + # Exclude golden files |
| 42 | + tests/integration |
| 43 | + # Exclude generated protobuf code |
| 44 | + *_pb2.py |
0 commit comments