Skip to content

Commit

Permalink
Merge pull request #96 from adfinis/jlf/chore-remove-unnecessary-isor…
Browse files Browse the repository at this point in the history
…t-and-flake8-configurations-since-we-use-ruff

chore: remove isort and flake8 configs since we use ruff
  • Loading branch information
Jean-Louis Fuchs authored Mar 22, 2024
2 parents a4207d9 + f64739d commit 7795ed2
Showing 1 changed file with 0 additions and 22 deletions.
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

0 comments on commit 7795ed2

Please sign in to comment.