From 07aa06ef21268407765b44ce9da39be115161427 Mon Sep 17 00:00:00 2001 From: Bradley Lowekamp Date: Thu, 22 May 2025 14:38:35 -0400 Subject: [PATCH] Adding configuration file to be a pre-commit hook --- .pre-commit-hooks.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .pre-commit-hooks.yaml diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml new file mode 100644 index 0000000..bc908ed --- /dev/null +++ b/.pre-commit-hooks.yaml @@ -0,0 +1,8 @@ +# This is a configuration file for a pre-commit hook +- id: comment-spell-check + name: Comment Spell Check + description: "Automatically spell checks comments of a codebase." + entry: comment_spell_check + language: python + minimum_pre_commit_version: 2.9.2 + types_or: [python, rst, markdown, ruby, java ]