.pre-commit-config.yaml: add commented exiftool hook

This commit is contained in:
Aminda Suomalainen 2023-06-04 11:41:12 +03:00
parent 5d00ccaf6b
commit ea2991c23d
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
1 changed files with 10 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# See https://pre-commit.ci for more information
ci:
# Attempts to use networking and fails at name resolution, local hook
# skip: [bundler-audit, pylint, latexmk]
# skip: [bundler-audit, pylint, latexmk, exiftool]
# Forĝejo/Gitea mirrors will autoclose pull requests. This should decrease
# the frequency of unnecessary PRs.
# https://github.com/pre-commit-ci/issues/issues/83
@ -116,3 +116,12 @@ repos:
# entry: latexmk -quiet
# language: system
# types: [text, tex]
# Fedora: perl-Image-ExifTool
# - repo: local
# hooks:
# - id: exiftool
# name: Remove all EXIF metadata using exiftool
# entry: exiftool -all=
# language: system
# types: [image]