From 1b6e02b6f06dd80ed01873b76d834b03419de63f Mon Sep 17 00:00:00 2001 From: Marco Castelluccio Date: Wed, 15 May 2019 11:23:11 +0200 Subject: [PATCH] Add a pre-commit hook definition to run codespell --- .pre-commit-hooks.yaml | 9 +++++++++ 1 file changed, 9 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 0000000000..07898b7deb --- /dev/null +++ b/.pre-commit-hooks.yaml @@ -0,0 +1,9 @@ +- id: codespell + name: codespell + description: Checks for common misspellings in text files. + entry: codespell + language: python + types: [text] + args: [] + require_serial: false + additional_dependencies: []