summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTéo Bouvard <teobouvard@gmail.com>2022-03-07 20:34:52 +0100
committerGitHub <noreply@github.com>2022-03-07 20:34:52 +0100
commit6dd80f3d2d8b87e5ecdffd28a7d1c34b07a3c984 (patch)
treeac3913f8f29349220179c2209d9eb0be95077627
parent942246f7572777d71f0fec7dc911dc25834cdb41 (diff)
downloadpylint-git-6dd80f3d2d8b87e5ecdffd28a7d1c34b07a3c984.tar.gz
Fix pre-commit configuration hook URL (#5869)
Removing the final slash in the `repo` url prevents git from not being able to clone the repository.
-rw-r--r--.pre-commit-config.yaml2
-rw-r--r--CONTRIBUTORS.txt2
2 files changed, 3 insertions, 1 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 0757c41c1..e3a1ad58f 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -36,7 +36,7 @@ repos:
- id: black
args: [--safe, --quiet]
exclude: *fixtures
- - repo: https://github.com/Pierre-Sassoulas/black-disable-checker/
+ - repo: https://github.com/Pierre-Sassoulas/black-disable-checker
rev: 1.0.1
hooks:
- id: black-disable-checker
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 88ab429cf..491a49dc1 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -603,3 +603,5 @@ contributors:
- Improve non-ascii-name checker
* Daniel Brookman: contributor
+
+* Téo Bouvard: contributor