From 455cf7c7d639258eac233c17056fdfa9a43bdfa5 Mon Sep 17 00:00:00 2001 From: Peter Cock Date: Sat, 14 Jun 2025 08:43:20 +0900 Subject: [PATCH] Drop Python mentions in .pre-commit-config.yaml [ci skip] --- .pre-commit-config.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e1512cfa..61548332 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,13 +12,12 @@ repos: - id: check-shebang-scripts-are-executable - id: check-symlinks - id: check-yaml - - id: debug-statements - id: destroyed-symlinks - id: end-of-file-fixer - files: \.(md|py|sh|rst|yml|yaml)$ + files: \.(md|sh|rst|yml|yaml)$ - id: mixed-line-ending - id: trailing-whitespace - files: \.(md|py|sh|rst|yml|yaml)$ + files: \.(md|sh|rst|yml|yaml)$ - repo: local hooks: - id: no-tabs @@ -26,12 +25,12 @@ repos: description: Reject any files containing a tab entry: '\t' language: pygrep - files: \.(md|py|sh|rst|yml|yaml)$ + files: \.(md|sh|rst|yml|yaml)$ - repo: https://github.com/codespell-project/codespell rev: v2.2.6 hooks: - id: codespell - files: \.(md|py|sh|rst|yml|yaml)$ + files: \.(md|sh|rst|yml|yaml)$ ci: # Settings for the https://pre-commit.ci/ continuous integration service autofix_prs: true