mirror of
https://github.com/theoludwig/markdownlint-rule-relative-links.git
synced 2025-05-27 11:37:24 +02:00
18 lines
365 B
JavaScript
18 lines
365 B
JavaScript
import relativeLinksRule from "./src/index.js"
|
|
|
|
const config = {
|
|
config: {
|
|
extends: "markdownlint/style/prettier",
|
|
default: true,
|
|
"relative-links": {
|
|
root_path: ".",
|
|
},
|
|
"no-inline-html": false,
|
|
},
|
|
globs: ["**/*.md"],
|
|
ignores: ["**/node_modules", "**/test/fixtures/**"],
|
|
customRules: [relativeLinksRule],
|
|
}
|
|
|
|
export default config
|