Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
# - id: check-builtin-literals
# - id: check-executables-have-shebangs
Expand All @@ -17,3 +17,12 @@ repos:
- id: end-of-file-fixer
# - id: mixed-line-ending
# - id: trailing-whitespace

- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
hooks:
- id: codespell
args:
- --ignore-words-list=declatory
additional_dependencies:
- tomli
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
RABBIT_DIR=rabbitmq-c
RABBIT_DIST=librabbitmq

# Distribuition tools
# Distribution tools
PYTHON=python

all: build manylinux2014
Expand Down
Loading