mirror of
https://github.com/theoludwig/markdownlint-rule-relative-links.git
synced 2025-01-21 10:28:33 +01:00
16 lines
342 B
JavaScript
16 lines
342 B
JavaScript
|
import relativeLinksRule from "./src/index.js"
|
||
|
|
||
|
const config = {
|
||
|
config: {
|
||
|
"extends": "markdownlint/style/prettier",
|
||
|
default: true,
|
||
|
"relative-links": true,
|
||
|
"no-inline-html": false,
|
||
|
},
|
||
|
globs: ["**/*.md"],
|
||
|
ignores: ["**/node_modules", "**/test/fixtures/**"],
|
||
|
customRules: [relativeLinksRule],
|
||
|
}
|
||
|
|
||
|
export default config
|