2019-11-12 23:51:27 +00:00
|
|
|
[flake8]
|
2020-08-14 16:12:24 -04:00
|
|
|
ignore = E501,W503,E741,E226,B950
|
|
|
|
|
select = C,E,F,W,B,B9
|
2019-11-12 23:51:27 +00:00
|
|
|
application-import-names = cibuildwheel
|
2020-02-15 12:15:44 +00:00
|
|
|
exclude =
|
|
|
|
|
cibuildwheel/resources/,
|
|
|
|
|
dist/,
|
|
|
|
|
build/,
|
|
|
|
|
.git/,
|
|
|
|
|
env/,
|
|
|
|
|
env2/,
|
2020-04-06 11:50:30 +01:00
|
|
|
env??/,
|
2020-02-15 12:15:44 +00:00
|
|
|
.venv/,
|
|
|
|
|
site/
|
2020-05-03 16:52:35 +01:00
|
|
|
|
2020-05-03 17:03:35 +01:00
|
|
|
[tool:pytest]
|
2020-05-03 16:52:35 +01:00
|
|
|
junit_family=xunit2
|
2020-05-17 16:59:06 +01:00
|
|
|
|
2020-05-07 00:20:37 +02:00
|
|
|
[mypy]
|
2020-05-17 20:17:34 +01:00
|
|
|
python_version = 3.6
|
|
|
|
|
files = cibuildwheel,test
|
|
|
|
|
|
|
|
|
|
warn_unused_configs = True
|
|
|
|
|
warn_redundant_casts = True
|
|
|
|
|
|
|
|
|
|
[mypy-cibuildwheel]
|
|
|
|
|
disallow_any_generics = True
|
|
|
|
|
disallow_subclassing_any = True
|
|
|
|
|
disallow_untyped_calls = True
|
|
|
|
|
disallow_untyped_defs = True
|
|
|
|
|
disallow_incomplete_defs = True
|
|
|
|
|
check_untyped_defs = True
|
|
|
|
|
disallow_untyped_decorators = True
|
|
|
|
|
no_implicit_optional = True
|
|
|
|
|
warn_unused_ignores = True
|
|
|
|
|
warn_return_any = True
|
|
|
|
|
no_implicit_reexport = True
|
|
|
|
|
strict_equality = True
|
|
|
|
|
|
|
|
|
|
[mypy-pytest,setuptools]
|
|
|
|
|
ignore_missing_imports = True
|