From cbeed810d63d93ca1daffb1a8e2226c2a56ffa2f Mon Sep 17 00:00:00 2001 From: Jonas Forsberg Date: Sat, 19 Oct 2024 09:11:27 +0200 Subject: [PATCH] added pre-commit --- .pre-commit-config.yaml | 10 ++++++++++ Makefile | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 .pre-commit-config.yaml create mode 100644 Makefile diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..7e109d7 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,10 @@ +# See https://pre-commit.com for more information +# See https://pre-commit.com/hooks.html for more hooks +repos: +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v3.2.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-yaml + - id: check-added-large-files diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b4968d1 --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +pre-commit: + pip install pre-commit + pre-commit install