UNPKG

@github/markdownlint-github

Version:

An opinionated collection of markdownlint rules used by GitHub.

16 lines (14 loc) 331 B
import { init } from "./index.js"; const configOptions = await init({ default: false, "heading-increment": true, "no-alt-text": true, "single-h1": true, "no-emphasis-as-heading": true, "first-line-heading": true, }); const options = { config: configOptions, customRules: ["./index.js"], }; export default options;