From 0407f2bb4e0ad44413887453bc004e1bad78358c Mon Sep 17 00:00:00 2001 From: geruh Date: Sun, 25 Jan 2026 18:01:26 -0800 Subject: [PATCH] chore: replace debug-statements hook with ruff T100 --- .pre-commit-config.yaml | 1 - ruff.toml | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f539cb2258..ed5a42e69a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,7 +23,6 @@ repos: hooks: - id: trailing-whitespace - id: end-of-file-fixer - - id: debug-statements - id: check-yaml - id: check-ast - repo: https://github.com/astral-sh/ruff-pre-commit diff --git a/ruff.toml b/ruff.toml index 257556a463..545ede41e4 100644 --- a/ruff.toml +++ b/ruff.toml @@ -56,6 +56,7 @@ select = [ "C4", # flake8-comprehensions "I", # isort "UP", # pyupgrade + "T100", # flake8-debugger ] ignore = []