mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
45 lines
664 B
INI
45 lines
664 B
INI
[isort]
|
|
skip =
|
|
./build,
|
|
.nox,
|
|
.tox,
|
|
.scratch,
|
|
_vendor,
|
|
data
|
|
multi_line_output = 3
|
|
known_third_party =
|
|
pip._vendor
|
|
known_first_party =
|
|
pip
|
|
tests
|
|
default_section = THIRDPARTY
|
|
include_trailing_comma = true
|
|
|
|
[flake8]
|
|
exclude =
|
|
./build,
|
|
.nox,
|
|
.tox,
|
|
.scratch,
|
|
_vendor,
|
|
data
|
|
select = E,W,F
|
|
ignore = W504
|
|
|
|
[mypy]
|
|
follow_imports = silent
|
|
ignore_missing_imports = True
|
|
disallow_untyped_defs = True
|
|
|
|
[mypy-pip/_vendor/*]
|
|
follow_imports = skip
|
|
ignore_errors = True
|
|
|
|
[tool:pytest]
|
|
addopts = --ignore src/pip/_vendor --ignore tests/tests_cache -r aR
|
|
|
|
[bdist_wheel]
|
|
universal = 1
|
|
|
|
[metadata]
|
|
license_file = LICENSE.txt
|