forked from davidfritzsche/pytest-mypy-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flake8
More file actions
37 lines (34 loc) · 685 Bytes
/
.flake8
File metadata and controls
37 lines (34 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- mode: conf; -*-
# SPDX-FileCopyrightText: David Fritzsche
# SPDX-License-Identifier: CC0-1.0
[flake8]
exclude =
*.egg-info
.eggs
.build
.git
.tox
.venv
build
dist
docs
downloads
generated
venv
src/prettypb/protobuf/*.py
runtime/src/prettypb/protobuf/*.py
ignore =
# F811: redefinition of unused '...' from line ...
F811
# W503: line break before binary operator
W503
# E203: whitespace before ':'
E203
# E231: missing whitespace after ','
E231
# E501:line too long
E501
# E731: do not assign a lambda expression, use a def
E731
builtins = reveal_type
max-line-length = 88