.flake8 (poetry-1.1.15) | : | .flake8 (poetry-1.2.0) | ||
---|---|---|---|---|
[flake8] | [flake8] | |||
min_python_version = 3.7.0 | ||||
max-line-length = 88 | max-line-length = 88 | |||
ignore = E501, E203, W503 | ban-relative-imports = true | |||
per-file-ignores = __init__.py:F401 | # flake8-use-fstring: https://github.com/MichaelKim0407/flake8-use-fstring#--per | |||
exclude = | cent-greedy-and---format-greedy | |||
.git | format-greedy = 1 | |||
__pycache__ | inline-quotes = double | |||
setup.py | enable-extensions = TC, TC1 | |||
build | type-checking-exempt-modules = typing, typing-extensions | |||
dist | eradicate-whitelist-extend = ^-.*; | |||
releases | extend-ignore = | |||
.venv | # E203: Whitespace before ':' (pycqa/pycodestyle#373) | |||
.tox | E203, | |||
.mypy_cache | # SIM106: Handle error-cases first | |||
.pytest_cache | SIM106, | |||
.vscode | # ANN101: Missing type annotation for self in method | |||
.github | ANN101, | |||
poetry/utils/_compat.py | # ANN102: Missing type annotation for cls in classmethod | |||
poetry/utils/env_scripts/tags.py | ANN102, | |||
tests/fixtures/ | per-file-ignores = | |||
tests/repositories/fixtures/ | # TC002: Move third-party import '...' into a type-checking block | |||
tests/utils/fixtures/ | __init__.py:TC002, | |||
# ANN201: Missing return type annotation for public function | ||||
tests/test_*:ANN201 | ||||
tests/**/test_*:ANN201 | ||||
extend-exclude = | ||||
# Frozen and not subject to change in this repo: | ||||
get-poetry.py, | ||||
install-poetry.py, | ||||
# External to the project's coding standards: | ||||
tests/fixtures/*, | ||||
tests/**/fixtures/*, | ||||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added |