Skip to content

Commit c34da58

Browse files
committed
Remove mdformat pre-commit hook
mdformat requires Python>=3.7, but python-lsp-black requires compatibility with Python 3.6.
1 parent 933c310 commit c34da58

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,3 @@ repos:
2323
hooks:
2424
- id: check-merge-conflict
2525
- id: debug-statements
26-
- repo: https://github.com/executablebooks/mdformat
27-
rev: 0.7.10
28-
hooks:
29-
- id: mdformat
30-
additional_dependencies:
31-
- mdformat-gfm

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ flake8:
1010
isort:
1111
pre-commit run -a isort
1212

13-
markdown:
14-
pre-commit run -a mdformat
15-
1613
mypy:
1714
pre-commit run -a mypy
1815

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ To run linters:
5151

5252
```shell
5353
make lint # just a shortcut to pre-commit run -a
54-
make <linter_name> # black, flake8, isort, markdown, mypy
54+
make <linter_name> # black, flake8, isort, mypy
5555
```
5656

5757
To upgrade the version of the pre-commit hooks:

0 commit comments

Comments
 (0)