summaryrefslogtreecommitdiffstats
path: root/.pre-commit-config.yaml
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2020-05-18 21:54:01 +0200
committerUwe Klotz <uklotz@mixxx.org>2020-05-18 21:57:49 +0200
commit7534e325ac5c210764abc7d01eacd5aeedb5c2c8 (patch)
tree231fc00f51693edaa475af784a93852ac887f911 /.pre-commit-config.yaml
parent55f1205d2ded41ca110991b73e9df7a744c8b17a (diff)
Fix pre-commit-hook exclusion of .ts files
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r--.pre-commit-config.yaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index de23df0f80..7a5177face 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -47,13 +47,14 @@ repos:
rev: v2.3.0
hooks:
- id: check-byte-order-marker
- exclude: ^.*(\.cbproj|\.groupproj|\.props|\.sln|\.vcxproj|\.vcxproj.filters|\.ts)$
+ exclude: ^.*(\.cbproj|\.groupproj|\.props|\.sln|\.vcxproj|\.vcxproj.filters)$
- id: check-case-conflict
- id: check-json
- id: check-merge-conflict
- id: check-xml
- id: check-yaml
- id: end-of-file-fixer
+ exclude: ^.*(\.ts)$
stages:
- commit
- manual