50 lines
769 B
INI
50 lines
769 B
INI
[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
|
|
|