From 1cebf3049179e49f8ffbe67f8f5e29e8720d7d99 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Fri, 17 Apr 2026 03:28:11 -0400 Subject: [PATCH] update: add ruff and pytest config in pyproject.toml --- pyproject.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 01286fd..0a6ee8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,3 +20,13 @@ backend-path = ["."] [tool.uv] package = true + +[tool.ruff] +line-length = 88 +target-version = "py313" + +[tool.ruff.lint] +select = ["E", "F", "I", "B", "UP"] + +[tool.pytest.ini_options] +testpaths = ["tests"]