From a7bd258820c1da25281d3d28760b0f9c38109721 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Thu, 2 Apr 2026 15:49:28 +0900 Subject: chore: enhance ruff lint rules with ASYNC, bugbear, isort, pyupgrade --- pyproject.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml index 6938778..f6815da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,3 +12,14 @@ addopts = "--import-mode=importlib" [tool.ruff] target-version = "py312" line-length = 100 + +[tool.ruff.lint] +select = ["E", "W", "F", "I", "B", "UP", "ASYNC", "PERF", "C4", "RUF"] +ignore = ["E501"] + +[tool.ruff.lint.per-file-ignores] +"tests/*" = ["F841"] +"*/tests/*" = ["F841"] + +[tool.ruff.lint.isort] +known-first-party = ["shared"] -- cgit v1.2.3