فهرست منبع

fix(pre-commit): update URL and versions in the pre-commit configuration (#1865)

There was a dead link in the pre-commit-golang URL. Also, Woile/commitizen redirects to commitizen-tools/commitizen, so change that URL as well. Last, update all the versions using pre-commit autoupdate.

This will make it easier for new contributers to use the pre-commit
hooks when contributing.
Joey H 2 سال پیش
والد
کامیت
d3fbfa26ca
1فایلهای تغییر یافته به همراه6 افزوده شده و 6 حذف شده
  1. 6 6
      .pre-commit-config.yaml

+ 6 - 6
.pre-commit-config.yaml

@@ -1,8 +1,8 @@
 default_stages: [commit]
 
 repos:
-  - repo: git://github.com/dnephin/pre-commit-golang
-    rev: v0.3.5
+  - repo: https://github.com/dnephin/pre-commit-golang
+    rev: v0.5.1
     hooks:
       - id: go-fmt
       - id: go-imports
@@ -12,20 +12,20 @@ repos:
       - id: go-build
 
   - repo: https://github.com/pre-commit/mirrors-prettier
-    rev: v2.2.1 # Use the sha or tag you want to point at
+    rev: v3.0.0-alpha.4 # Use the sha or tag you want to point at
     hooks:
       - id: prettier
 
   - repo: https://github.com/pre-commit/pre-commit-hooks
-    rev: v3.4.0 # Use the ref you want to point at
+    rev: v4.4.0 # Use the ref you want to point at
     hooks:
       - id: trailing-whitespace
       - id: check-json
       - id: check-yaml
       - id: check-added-large-files
 
-  - repo: https://github.com/Woile/commitizen
-    rev: v2.17.6
+  - repo: https://github.com/commitizen-tools/commitizen
+    rev: v2.38.0
     hooks:
       - id: commitizen
         stages: [commit-msg]