fileformats/.markdownlint-cli2.jsonc

13 lines
360 B
Plaintext
Raw Normal View History

2023-12-07 00:12:28 +01:00
{
"config": {
"extends": "markdownlint/style/prettier",
2023-12-07 00:12:28 +01:00
"default": true,
"relative-links": true,
2024-01-27 19:49:31 +01:00
"no-duplicate-heading": false,
"no-inline-html": false,
2023-12-07 00:12:28 +01:00
},
2024-01-27 19:49:31 +01:00
"globs": ["**/*.md"],
"ignores": ["**/node_modules", "**/target", "**/book", "**/.bin"],
"customRules": ["markdownlint-rule-relative-links"],
2023-12-07 00:12:28 +01:00
}