mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
Some checks failed
Checkers / linkcheck (push) Has been cancelled
Checkers / spellcheck (push) Has been cancelled
CI / build (20, macos-latest) (push) Has been cancelled
CI / build (20, ubuntu-latest) (push) Has been cancelled
CI / build (20, windows-latest) (push) Has been cancelled
CI / build (22, macos-latest) (push) Has been cancelled
CI / build (22, ubuntu-latest) (push) Has been cancelled
CI / build (22, windows-latest) (push) Has been cancelled
CI / build (24, macos-latest) (push) Has been cancelled
CI / build (24, ubuntu-latest) (push) Has been cancelled
CI / build (24, windows-latest) (push) Has been cancelled
CI / pnpm (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
TestRepos / build (latest, ubuntu-latest) (push) Has been cancelled
UpdateTestRepos / update (push) Has been cancelled
14 lines
516 B
JavaScript
14 lines
516 B
JavaScript
// @ts-check
|
|
|
|
/** @type {string[]} */
|
|
export const deprecatedRuleNames = [];
|
|
export const fixableRuleNames = [
|
|
"MD004", "MD005", "MD007", "MD009", "MD010", "MD011",
|
|
"MD012", "MD014", "MD018", "MD019", "MD020", "MD021",
|
|
"MD022", "MD023", "MD026", "MD027", "MD029", "MD030",
|
|
"MD031", "MD032", "MD034", "MD037", "MD038", "MD039",
|
|
"MD044", "MD047", "MD049", "MD050", "MD051", "MD053",
|
|
"MD054", "MD058"
|
|
];
|
|
export const homepage = "https://github.com/DavidAnson/markdownlint";
|
|
export const version = "0.39.0";
|