From f250ff414d2764b85fc8dca636571ccb21d08385 Mon Sep 17 00:00:00 2001 From: "Julien.Hansen" Date: Mon, 14 Apr 2025 10:37:07 +0200 Subject: [PATCH] :bug: Pre-commit Hook --- .pre-commit-config-ci.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .pre-commit-config-ci.yaml diff --git a/.pre-commit-config-ci.yaml b/.pre-commit-config-ci.yaml new file mode 100644 index 0000000..f1b381b --- /dev/null +++ b/.pre-commit-config-ci.yaml @@ -0,0 +1,17 @@ +repos: +- repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.9.9 + hooks: + - id: ruff + args: [] +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v5.0.0 + hooks: + - id: check-added-large-files + - id: check-merge-conflict + - id: check-toml + - id: check-yaml + - id: end-of-file-fixer + - id: mixed-line-ending + args: [--fix=lf] + - id: trailing-whitespace