mirror of
https://github.com/evroon/bracket.git
synced 2026-06-11 10:15:19 -04:00
Use https://github.com/shuding/nextra and https://github.com/leoMirandaa/shadcn-landing-page instead of Docusaurus.
28 lines
576 B
JavaScript
28 lines
576 B
JavaScript
import relativeLinksRule from "markdownlint-rule-relative-links"
|
|
|
|
const config = {
|
|
config: {
|
|
default: true,
|
|
"line-length": {
|
|
strict: true,
|
|
code_blocks: false,
|
|
line_length: 100
|
|
},
|
|
"single-h1": false,
|
|
"no-inline-html": false,
|
|
|
|
// part of the markdownlint-rule-relative-links plugin
|
|
"relative-links": true
|
|
},
|
|
globs: [
|
|
"**/*.{md,mdx}"
|
|
],
|
|
ignores: [
|
|
"node_modules",
|
|
"static"
|
|
],
|
|
customRules: [relativeLinksRule],
|
|
}
|
|
|
|
export default config
|