From 7d55a43119c2898dfd9b4f8ff87b4298977dcca9 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Thu, 14 Aug 2025 15:28:40 -0700 Subject: [PATCH] Use ruff default options. --- pyproject.toml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 52132f3..05bcb46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,32 +71,6 @@ testpaths = [ "tests", ] -[tool.ruff] -select = ["ALL"] -ignore = [ - "A0", - "ARG001", - "ANN", - "B018", - "BLE001", - "C901", - "COM812", # conflicts with ruff format - "D", - "E501", - "EM1", - "FIX002", - "ISC001", # conflicts with ruff format - "PGH003", - "PLR0912", - "PLR2004", - "PLW0603", - "S101", - "SLF001", - "T201", - "TD0", - "TRY", -] - [tool.ruff.isort] known-first-party = ["cista"]