From f64739dfe9401351c1b9a1bf843a0ea2ea245fec Mon Sep 17 00:00:00 2001 From: Jean-Louis Fuchs Date: Fri, 22 Mar 2024 10:11:10 +0100 Subject: [PATCH] chore: remove isort and flake8 configs since we use ruff --- pyproject.toml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f9835a6..0b3c491 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [