From e3e31bdd6888195fa3114c15547cb9ecb2057ccb Mon Sep 17 00:00:00 2001 From: awwaawwa <8493196+awwaawwa@users.noreply.github.com> Date: Mon, 20 Jan 2025 10:31:13 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(config):=20update=20flake8?= =?UTF-8?q?=20and=20dev=20dependencies=20in=20pyproject.toml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add ignore rules for specific linter warnings - set max line length to 88 - update dev dependencies to latest versions - bump autopep8 to >=2.3.2 - bump black to >=24.10.0 --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1dbfa6c..119391a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,3 +43,9 @@ build-backend = "hatchling.build" [tool.flake8] ignore = ["E203", "E261", "E501", "W503", "E741"] max-line-length = 88 + +[dependency-groups] +dev = [ + "autopep8>=2.3.2", + "black>=24.10.0", +]