add exiftool as system hook

This commit is contained in:
Aminda Suomalainen 2023-06-04 11:34:46 +03:00
parent 2be7754e3d
commit c249bbc8b3
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@ -10,3 +10,4 @@ keys.txt.asc
.bundle .bundle
.jekyll-cache .jekyll-cache
vendor/ vendor/
*_original

View File

@ -5,6 +5,7 @@
# See https://pre-commit.com for more information # See https://pre-commit.com for more information
# See https://pre-commit.ci for more information # See https://pre-commit.ci for more information
ci: ci:
skip: [exiftool]
# https://github.com/pre-commit-ci/issues/issues/83 # https://github.com/pre-commit-ci/issues/issues/83
autoupdate_schedule: quarterly autoupdate_schedule: quarterly
@ -34,3 +35,12 @@ repos:
rev: "v3.0.0-alpha.9-for-vscode" rev: "v3.0.0-alpha.9-for-vscode"
hooks: hooks:
- id: prettier - id: prettier
# Fedora: perl-Image-ExifTool
- repo: local
hooks:
- id: exiftool
name: Remove all EXIF metadata using exiftool
entry: exiftool -all=
language: system
types: [image]