Skip to content

Commit 7f5385b

Browse files
committed
ci: add markdownlint
1 parent 7002a5d commit 7f5385b

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.github/pull_request_template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,5 @@ Delete any checklist items that do not apply (e.g. if your change is minor, it m
2424
- [ ] Code is formatted (`cargo fmt`)
2525
- [ ] `cargo test`
2626
- [ ] Changes are added to the CHANGELOG
27+
28+
<!-- markdownlint-disable-file MD041 -->

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ jobs:
201201
steps:
202202
- uses: actions/checkout@v4
203203
- uses: Swatinem/rust-cache@v2
204+
- uses: DavidAnson/markdownlint-cli2-action@v9
204205
- name: Doc
205206
run: cargo doc --workspace --all-features
206207
validate-stac-geoparquet:

.markdownlint-cli2.jsonc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"config": {
3+
"MD013": false
4+
},
5+
"globs": ["**/*.md"],
6+
"gitignore": true,
7+
"ignores": ["spec-examples/*/README.md", "crates/*/examples/README.md", "python/examples/README.md", "target/**/*.md"]
8+
}

0 commit comments

Comments
 (0)