UNPKG

@nozomiishii/markdownlint-cli2-config

Version:
34 lines (30 loc) 773 B
/** * markdownlint * {@link https://github.com/DavidAnson/markdownlint} */ module.exports = { /** * Rules * {@link https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md} */ config: { /** * 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'], };