From e0d6c41b47ab79c615a97491bfb20729ab467370 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Thu, 19 Feb 2026 13:03:38 -0600 Subject: [PATCH] optional pre-commit config --- .pre-commit-config.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 000000000000..16ced0cde487 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,16 @@ +repos: + - repo: local + hooks: + - id: translations + name: translations + entry: make translations + language: system + files: '\.py$|\.html$|babel\.cfg$' + pass_filenames: false + + - id: reformat + name: reformat + entry: make reformat + language: system + files: '\.py$|\.html$' + pass_filenames: false