We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbaca88 commit 34a3fbaCopy full SHA for 34a3fba
2 files changed
src/sp_repo_review/checks/precommit.py
@@ -138,6 +138,7 @@ class PC180(PreCommit):
138
"https://github.com/rbubley/mirrors-prettier",
139
"https://github.com/hukkin/mdformat",
140
"https://github.com/rvben/rumdl-pre-commit",
141
+ "https://github.com/davidanson/markdownlint-cli2",
142
}
143
144
tests/test_precommit.py
@@ -166,6 +166,14 @@ def test_pc180_alt_3():
166
assert compute_check("PC180", precommit=precommit).result
167
168
169
+def test_pc180_alt_4():
170
+ precommit = yaml.safe_load("""
171
+ repos:
172
+ - repo: https://github.com/DavidAnson/markdownlint-cli2
173
+ """)
174
+ assert compute_check("PC180", precommit=precommit).result
175
+
176
177
def test_pc191(ruff_check: str):
178
precommit = yaml.safe_load(f"""
179
repos:
0 commit comments