summaryrefslogtreecommitdiffstats
path: root/.pre-commit-config.yaml
diff options
context:
space:
mode:
authorKonrad Kleine <kkleine@redhat.com>2024-12-10 11:39:03 +0100
committerKonrad Kleine <kkleine@redhat.com>2024-12-10 23:33:28 +0100
commit4743150bbd30dd57f17f1ad3afe950eb64d9ea89 (patch)
tree678e1f6bbb435c27036fc80b05e2df1255f357d4 /.pre-commit-config.yaml
downloadpython-nanobind-main.tar.gz
python-nanobind-main.tar.xz
python-nanobind-main.zip
First release of nanobind 2.4.0HEADmain
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r--.pre-commit-config.yaml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 0000000..f26de03
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,19 @@
+# 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: v5.0.0
+ hooks:
+ - id: check-ast
+ - id: check-case-conflict
+ - id: check-docstring-first
+ - id: check-executables-have-shebangs
+ - id: check-merge-conflict
+ - id: check-symlinks
+ - id: trailing-whitespace
+ - id: end-of-file-fixer
+ - id: mixed-line-ending
+ - id: fix-byte-order-marker
+ - id: detect-private-key
+
+exclude: ".*\\.patch"