mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
4814d3369c
Fix #979 with [markdownlint-cli2](https://github.com/DavidAnson/markdownlint-cli2) and [markdown-link-check](https://github.com/actions-marketplace-validations/gaurav-nelson_github-action-markdown-link-check) ## Link check - [x] Add link check to just clippy - [x] Add relative links check with [markdown-link-check](https://github.com/actions-marketplace-validations/gaurav-nelson_github-action-markdown-link-check) - [x] Ignore `CHANGELOG.md` - [x] Ignore `localhost` and `127.0.0.1` - [x] Ignore `http://opensource.org` - [x] Add to justfile ## Lintting - [x] Add markdown linting - [x] Add markdown lint to just fmt - [x] Ignore `CHANGELOG.md`? - [x] Ignore [Line Length](https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md013.md) - [x] Ignore [First line in a file should be a top-level heading](https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md041.md) - [x] Ignore [Inline HTML](https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md033.md) - [x] Ignore [Images should have alternate text](https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md045.md) - [x] Ignore [Heading levels should only increment by one level at a time](https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md001.md) - [x] Rename lint config file. - [x] Add to justfile --------- Co-authored-by: Yuri Astrakhan <YuriAstrakhan@gmail.com>
19 lines
433 B
Plaintext
19 lines
433 B
Plaintext
{
|
|
"config": {
|
|
"default": true,
|
|
"relative-links": true,
|
|
// Line length Check. See https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md013.md
|
|
"MD013": false,
|
|
"MD041": false,
|
|
"MD033": false,
|
|
"MD045": false,
|
|
"MD001": false
|
|
},
|
|
// globs expression. See https://github.com/DavidAnson/markdownlint-cli2#command-line
|
|
"globs": [
|
|
"README.md",
|
|
"!CHANGELOG.md",
|
|
"docs/src/*.md"
|
|
]
|
|
}
|