UNPKG

@nozomiishii/markdownlint-cli2-config

Version:
42 lines (41 loc) 938 B
//#region src/index.ts /** * markdownlint * {@link https://github.com/DavidAnson/markdownlint} */ var src_default = { /** * Rules * {@link https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md} */ config: { /** * MD004 - Unordered list style * {@link https://github.com/DavidAnson/markdownlint/blob/main/doc/md004.md} */ MD004: { style: "dash" }, /** * MD013 - Line length * {@link https://github.com/DavidAnson/markdownlint/blob/main/doc/md013.md} */ MD013: false, /** * MD024 - Multiple headings with the same content * {@link https://github.com/DavidAnson/markdownlint/blob/main/doc/md024.md} */ MD024: { siblings_only: true }, /** * MD033 - Inline HTML * {@link https://github.com/DavidAnson/markdownlint/blob/main/doc/md033.md} */ MD033: false }, ignores: [ "**/node_modules", "**/submodules", "LICENSE", ".git" ] }; //#endregion export { src_default as default };