summaryrefslogtreecommitdiffstats
path: root/third_party/python/frozenlist/setup.cfg
blob: e96d501be2b3c1fdb015b5840cce4cf248f43abf (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
[aliases]
test = pytest

[metadata]
license_file = LICENSE.txt

[pep8]
max-line-length = 79

[easy_install]
zip_ok = false

[flake8]
ignore = N801,N802,N803,E226,W504,E252
max-line-length = 79

[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
known_third_party = pytest
known_first_party = frozenlist

[report]
exclude_lines = 
	@abc.abstractmethod
	@abstractmethod

[coverage:run]
branch = True
source = frozenlist
omit = site-packages

[mypy]
follow_imports = silent
strict_optional = True
warn_redundant_casts = True
check_untyped_defs = True
disallow_any_generics = True
disallow_untyped_defs = True
warn_unused_ignores = True

[mypy-pytest]
ignore_missing_imports = true

[egg_info]
tag_build = 
tag_date = 0