Add pre-commit config

This commit is contained in:
Balazs Perlaki-Horvath 2023-12-30 09:44:10 +01:00
parent 812422fb75
commit fa78b1c297

12
.pre-commit-config.yaml Normal file
View File

@ -0,0 +1,12 @@
# docs: https://pre-commit.com
default_install_hook_types: [post-merge, post-checkout, post-rewrite]
repos:
- repo: local
hooks:
- id: xcodegen
name: Generate project files for XCode
description: "Generate project file for XCode"
entry: xcodegen
language: system
always_run: true
stages: [post-checkout, post-merge, post-rewrite]