mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-02-08 21:59:39 +01:00
17 lines
370 B
JavaScript
17 lines
370 B
JavaScript
|
import relativeLinksRule from "markdownlint-rule-relative-links"
|
||
|
|
||
|
const config = {
|
||
|
config: {
|
||
|
extends: "markdownlint/style/prettier",
|
||
|
default: true,
|
||
|
"relative-links": true,
|
||
|
"no-duplicate-heading": false,
|
||
|
"no-inline-html": false,
|
||
|
},
|
||
|
globs: ["**/*.md"],
|
||
|
ignores: ["**/node_modules"],
|
||
|
customRules: [relativeLinksRule],
|
||
|
}
|
||
|
|
||
|
export default config
|