Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove isort and flake8 configs since we use ruff #96

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,9 @@ readme = "README.md"
[tool.mypy]
check_untyped_defs = true

[tool.isort]
profile = "black"

[tool.poetry.scripts]
pyaptly = 'pyaptly.cli:entry_point'

[tool.flake8]
ignore = [
# whitespace before ':'
"E203",
# too many leading ### in a block comment
"E266",
# expected 2 blank lines, found 1 (flake8 and black disagree on what to do
# with multiple comment blocks at top level)
"E302",
# line too long (managed by black)
"E501",
# Line break occurred before a binary operator (this is not PEP8 compatible)
"W503",
# We do not document __init__
"D107",
]

max-line-length = 88

[tool.coverage.report]
fail_under = 100
exclude_lines = [
Expand Down