mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
Update to version 0.36.0.
This commit is contained in:
parent
b4697d6354
commit
e708143a28
11 changed files with 435 additions and 425 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.36.0
|
||||||
|
|
||||||
|
- Improve MD051
|
||||||
|
- Move `applyFix` and `applyFixes` from helpers to core
|
||||||
|
- Make `micromark` parser available to custom rules
|
||||||
|
- Introduce `./micromark` helpers exports
|
||||||
|
- Update custom/rule documentation
|
||||||
|
- Improve performance
|
||||||
|
- Update dependencies
|
||||||
|
|
||||||
## 0.35.0
|
## 0.35.0
|
||||||
|
|
||||||
- Add MD058/blanks-around-tables
|
- Add MD058/blanks-around-tables
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/*! markdownlint 0.35.0 https://github.com/DavidAnson/markdownlint @license MIT */
|
/*! markdownlint 0.36.0 https://github.com/DavidAnson/markdownlint @license MIT */
|
||||||
var markdownlint;
|
var markdownlint;
|
||||||
/******/ (() => { // webpackBootstrap
|
/******/ (() => { // webpackBootstrap
|
||||||
/******/ var __webpack_modules__ = ({
|
/******/ var __webpack_modules__ = ({
|
||||||
|
@ -1406,7 +1406,7 @@ module.exports.fixableRuleNames = [
|
||||||
"MD058"
|
"MD058"
|
||||||
];
|
];
|
||||||
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
|
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
|
||||||
module.exports.version = "0.35.0";
|
module.exports.version = "0.36.0";
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
|
@ -22,8 +22,8 @@ be useful to custom rule authors and may avoid duplicating code.
|
||||||
*None* - The entire body of code is tested to 100% coverage by the core
|
*None* - The entire body of code is tested to 100% coverage by the core
|
||||||
`markdownlint` project, so there are no additional tests here.
|
`markdownlint` project, so there are no additional tests here.
|
||||||
|
|
||||||
[custom-rules]: https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/CustomRules.md
|
[custom-rules]: https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/CustomRules.md
|
||||||
[jsdoc]: https://en.m.wikipedia.org/wiki/JSDoc
|
[jsdoc]: https://en.m.wikipedia.org/wiki/JSDoc
|
||||||
[markdown]: https://en.wikipedia.org/wiki/Markdown
|
[markdown]: https://en.wikipedia.org/wiki/Markdown
|
||||||
[markdownlint]: https://github.com/DavidAnson/markdownlint
|
[markdownlint]: https://github.com/DavidAnson/markdownlint
|
||||||
[rules]: https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/Rules.md
|
[rules]: https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/Rules.md
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "markdownlint-rule-helpers",
|
"name": "markdownlint-rule-helpers",
|
||||||
"version": "0.26.0",
|
"version": "0.27.0",
|
||||||
"description": "A collection of markdownlint helper functions for custom rules",
|
"description": "A collection of markdownlint helper functions for custom rules",
|
||||||
"main": "./helpers.js",
|
"main": "./helpers.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
|
|
208
lib/configuration-strict.d.ts
vendored
208
lib/configuration-strict.d.ts
vendored
|
@ -19,15 +19,15 @@ export interface ConfigurationStrict {
|
||||||
*/
|
*/
|
||||||
extends?: string | null;
|
extends?: string | null;
|
||||||
/**
|
/**
|
||||||
* MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md001.md
|
* MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md001.md
|
||||||
*/
|
*/
|
||||||
MD001?: boolean;
|
MD001?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md001.md
|
* MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md001.md
|
||||||
*/
|
*/
|
||||||
"heading-increment"?: boolean;
|
"heading-increment"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md003.md
|
* MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md003.md
|
||||||
*/
|
*/
|
||||||
MD003?:
|
MD003?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -38,7 +38,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "atx" | "atx_closed" | "setext" | "setext_with_atx" | "setext_with_atx_closed";
|
style?: "consistent" | "atx" | "atx_closed" | "setext" | "setext_with_atx" | "setext_with_atx_closed";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md003.md
|
* MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md003.md
|
||||||
*/
|
*/
|
||||||
"heading-style"?:
|
"heading-style"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -49,7 +49,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "atx" | "atx_closed" | "setext" | "setext_with_atx" | "setext_with_atx_closed";
|
style?: "consistent" | "atx" | "atx_closed" | "setext" | "setext_with_atx" | "setext_with_atx_closed";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md004.md
|
* MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md004.md
|
||||||
*/
|
*/
|
||||||
MD004?:
|
MD004?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -60,7 +60,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "asterisk" | "plus" | "dash" | "sublist";
|
style?: "consistent" | "asterisk" | "plus" | "dash" | "sublist";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md004.md
|
* MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md004.md
|
||||||
*/
|
*/
|
||||||
"ul-style"?:
|
"ul-style"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -71,15 +71,15 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "asterisk" | "plus" | "dash" | "sublist";
|
style?: "consistent" | "asterisk" | "plus" | "dash" | "sublist";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md005.md
|
* MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md005.md
|
||||||
*/
|
*/
|
||||||
MD005?: boolean;
|
MD005?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md005.md
|
* MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md005.md
|
||||||
*/
|
*/
|
||||||
"list-indent"?: boolean;
|
"list-indent"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md007.md
|
* MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md007.md
|
||||||
*/
|
*/
|
||||||
MD007?:
|
MD007?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -98,7 +98,7 @@ export interface ConfigurationStrict {
|
||||||
start_indent?: number;
|
start_indent?: number;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md007.md
|
* MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md007.md
|
||||||
*/
|
*/
|
||||||
"ul-indent"?:
|
"ul-indent"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -117,7 +117,7 @@ export interface ConfigurationStrict {
|
||||||
start_indent?: number;
|
start_indent?: number;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md009.md
|
* MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md009.md
|
||||||
*/
|
*/
|
||||||
MD009?:
|
MD009?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -136,7 +136,7 @@ export interface ConfigurationStrict {
|
||||||
strict?: boolean;
|
strict?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md009.md
|
* MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md009.md
|
||||||
*/
|
*/
|
||||||
"no-trailing-spaces"?:
|
"no-trailing-spaces"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -155,7 +155,7 @@ export interface ConfigurationStrict {
|
||||||
strict?: boolean;
|
strict?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md010.md
|
* MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md010.md
|
||||||
*/
|
*/
|
||||||
MD010?:
|
MD010?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -174,7 +174,7 @@ export interface ConfigurationStrict {
|
||||||
spaces_per_tab?: number;
|
spaces_per_tab?: number;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md010.md
|
* MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md010.md
|
||||||
*/
|
*/
|
||||||
"no-hard-tabs"?:
|
"no-hard-tabs"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -193,15 +193,15 @@ export interface ConfigurationStrict {
|
||||||
spaces_per_tab?: number;
|
spaces_per_tab?: number;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md011.md
|
* MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md011.md
|
||||||
*/
|
*/
|
||||||
MD011?: boolean;
|
MD011?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md011.md
|
* MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md011.md
|
||||||
*/
|
*/
|
||||||
"no-reversed-links"?: boolean;
|
"no-reversed-links"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md012.md
|
* MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md012.md
|
||||||
*/
|
*/
|
||||||
MD012?:
|
MD012?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -212,7 +212,7 @@ export interface ConfigurationStrict {
|
||||||
maximum?: number;
|
maximum?: number;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md012.md
|
* MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md012.md
|
||||||
*/
|
*/
|
||||||
"no-multiple-blanks"?:
|
"no-multiple-blanks"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -223,7 +223,7 @@ export interface ConfigurationStrict {
|
||||||
maximum?: number;
|
maximum?: number;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md013.md
|
* MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md013.md
|
||||||
*/
|
*/
|
||||||
MD013?:
|
MD013?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -262,7 +262,7 @@ export interface ConfigurationStrict {
|
||||||
stern?: boolean;
|
stern?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md013.md
|
* MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md013.md
|
||||||
*/
|
*/
|
||||||
"line-length"?:
|
"line-length"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -301,47 +301,47 @@ export interface ConfigurationStrict {
|
||||||
stern?: boolean;
|
stern?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md014.md
|
* MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md014.md
|
||||||
*/
|
*/
|
||||||
MD014?: boolean;
|
MD014?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md014.md
|
* MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md014.md
|
||||||
*/
|
*/
|
||||||
"commands-show-output"?: boolean;
|
"commands-show-output"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md018.md
|
* MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md018.md
|
||||||
*/
|
*/
|
||||||
MD018?: boolean;
|
MD018?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md018.md
|
* MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md018.md
|
||||||
*/
|
*/
|
||||||
"no-missing-space-atx"?: boolean;
|
"no-missing-space-atx"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md019.md
|
* MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md019.md
|
||||||
*/
|
*/
|
||||||
MD019?: boolean;
|
MD019?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md019.md
|
* MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md019.md
|
||||||
*/
|
*/
|
||||||
"no-multiple-space-atx"?: boolean;
|
"no-multiple-space-atx"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md020.md
|
* MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md020.md
|
||||||
*/
|
*/
|
||||||
MD020?: boolean;
|
MD020?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md020.md
|
* MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md020.md
|
||||||
*/
|
*/
|
||||||
"no-missing-space-closed-atx"?: boolean;
|
"no-missing-space-closed-atx"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md021.md
|
* MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md021.md
|
||||||
*/
|
*/
|
||||||
MD021?: boolean;
|
MD021?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md021.md
|
* MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md021.md
|
||||||
*/
|
*/
|
||||||
"no-multiple-space-closed-atx"?: boolean;
|
"no-multiple-space-closed-atx"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md022.md
|
* MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md022.md
|
||||||
*/
|
*/
|
||||||
MD022?:
|
MD022?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -356,7 +356,7 @@ export interface ConfigurationStrict {
|
||||||
lines_below?: number | number[];
|
lines_below?: number | number[];
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md022.md
|
* MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md022.md
|
||||||
*/
|
*/
|
||||||
"blanks-around-headings"?:
|
"blanks-around-headings"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -371,15 +371,15 @@ export interface ConfigurationStrict {
|
||||||
lines_below?: number | number[];
|
lines_below?: number | number[];
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md023.md
|
* MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md023.md
|
||||||
*/
|
*/
|
||||||
MD023?: boolean;
|
MD023?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md023.md
|
* MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md023.md
|
||||||
*/
|
*/
|
||||||
"heading-start-left"?: boolean;
|
"heading-start-left"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md024.md
|
* MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md024.md
|
||||||
*/
|
*/
|
||||||
MD024?:
|
MD024?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -390,7 +390,7 @@ export interface ConfigurationStrict {
|
||||||
siblings_only?: boolean;
|
siblings_only?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md024.md
|
* MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md024.md
|
||||||
*/
|
*/
|
||||||
"no-duplicate-heading"?:
|
"no-duplicate-heading"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -401,7 +401,7 @@ export interface ConfigurationStrict {
|
||||||
siblings_only?: boolean;
|
siblings_only?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md025.md
|
* MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md025.md
|
||||||
*/
|
*/
|
||||||
MD025?:
|
MD025?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -416,7 +416,7 @@ export interface ConfigurationStrict {
|
||||||
front_matter_title?: string;
|
front_matter_title?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md025.md
|
* MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md025.md
|
||||||
*/
|
*/
|
||||||
"single-title"?:
|
"single-title"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -431,7 +431,7 @@ export interface ConfigurationStrict {
|
||||||
front_matter_title?: string;
|
front_matter_title?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md025.md
|
* MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md025.md
|
||||||
*/
|
*/
|
||||||
"single-h1"?:
|
"single-h1"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -446,7 +446,7 @@ export interface ConfigurationStrict {
|
||||||
front_matter_title?: string;
|
front_matter_title?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md026.md
|
* MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md026.md
|
||||||
*/
|
*/
|
||||||
MD026?:
|
MD026?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -457,7 +457,7 @@ export interface ConfigurationStrict {
|
||||||
punctuation?: string;
|
punctuation?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md026.md
|
* MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md026.md
|
||||||
*/
|
*/
|
||||||
"no-trailing-punctuation"?:
|
"no-trailing-punctuation"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -468,23 +468,23 @@ export interface ConfigurationStrict {
|
||||||
punctuation?: string;
|
punctuation?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md027.md
|
* MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md027.md
|
||||||
*/
|
*/
|
||||||
MD027?: boolean;
|
MD027?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md027.md
|
* MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md027.md
|
||||||
*/
|
*/
|
||||||
"no-multiple-space-blockquote"?: boolean;
|
"no-multiple-space-blockquote"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md028.md
|
* MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md028.md
|
||||||
*/
|
*/
|
||||||
MD028?: boolean;
|
MD028?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md028.md
|
* MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md028.md
|
||||||
*/
|
*/
|
||||||
"no-blanks-blockquote"?: boolean;
|
"no-blanks-blockquote"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md029.md
|
* MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md029.md
|
||||||
*/
|
*/
|
||||||
MD029?:
|
MD029?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -495,7 +495,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "one" | "ordered" | "one_or_ordered" | "zero";
|
style?: "one" | "ordered" | "one_or_ordered" | "zero";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md029.md
|
* MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md029.md
|
||||||
*/
|
*/
|
||||||
"ol-prefix"?:
|
"ol-prefix"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -506,7 +506,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "one" | "ordered" | "one_or_ordered" | "zero";
|
style?: "one" | "ordered" | "one_or_ordered" | "zero";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md030.md
|
* MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md030.md
|
||||||
*/
|
*/
|
||||||
MD030?:
|
MD030?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -529,7 +529,7 @@ export interface ConfigurationStrict {
|
||||||
ol_multi?: number;
|
ol_multi?: number;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md030.md
|
* MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md030.md
|
||||||
*/
|
*/
|
||||||
"list-marker-space"?:
|
"list-marker-space"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -552,7 +552,7 @@ export interface ConfigurationStrict {
|
||||||
ol_multi?: number;
|
ol_multi?: number;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md031.md
|
* MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md031.md
|
||||||
*/
|
*/
|
||||||
MD031?:
|
MD031?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -563,7 +563,7 @@ export interface ConfigurationStrict {
|
||||||
list_items?: boolean;
|
list_items?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md031.md
|
* MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md031.md
|
||||||
*/
|
*/
|
||||||
"blanks-around-fences"?:
|
"blanks-around-fences"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -574,15 +574,15 @@ export interface ConfigurationStrict {
|
||||||
list_items?: boolean;
|
list_items?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md032.md
|
* MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md032.md
|
||||||
*/
|
*/
|
||||||
MD032?: boolean;
|
MD032?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md032.md
|
* MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md032.md
|
||||||
*/
|
*/
|
||||||
"blanks-around-lists"?: boolean;
|
"blanks-around-lists"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md
|
* MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md033.md
|
||||||
*/
|
*/
|
||||||
MD033?:
|
MD033?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -593,7 +593,7 @@ export interface ConfigurationStrict {
|
||||||
allowed_elements?: string[];
|
allowed_elements?: string[];
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md
|
* MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md033.md
|
||||||
*/
|
*/
|
||||||
"no-inline-html"?:
|
"no-inline-html"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -604,15 +604,15 @@ export interface ConfigurationStrict {
|
||||||
allowed_elements?: string[];
|
allowed_elements?: string[];
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md034.md
|
* MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md034.md
|
||||||
*/
|
*/
|
||||||
MD034?: boolean;
|
MD034?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md034.md
|
* MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md034.md
|
||||||
*/
|
*/
|
||||||
"no-bare-urls"?: boolean;
|
"no-bare-urls"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md035.md
|
* MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md035.md
|
||||||
*/
|
*/
|
||||||
MD035?:
|
MD035?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -623,7 +623,7 @@ export interface ConfigurationStrict {
|
||||||
style?: string;
|
style?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md035.md
|
* MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md035.md
|
||||||
*/
|
*/
|
||||||
"hr-style"?:
|
"hr-style"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -634,7 +634,7 @@ export interface ConfigurationStrict {
|
||||||
style?: string;
|
style?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md036.md
|
* MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md036.md
|
||||||
*/
|
*/
|
||||||
MD036?:
|
MD036?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -645,7 +645,7 @@ export interface ConfigurationStrict {
|
||||||
punctuation?: string;
|
punctuation?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md036.md
|
* MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md036.md
|
||||||
*/
|
*/
|
||||||
"no-emphasis-as-heading"?:
|
"no-emphasis-as-heading"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -656,31 +656,31 @@ export interface ConfigurationStrict {
|
||||||
punctuation?: string;
|
punctuation?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md037.md
|
* MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md037.md
|
||||||
*/
|
*/
|
||||||
MD037?: boolean;
|
MD037?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md037.md
|
* MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md037.md
|
||||||
*/
|
*/
|
||||||
"no-space-in-emphasis"?: boolean;
|
"no-space-in-emphasis"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md038.md
|
* MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md038.md
|
||||||
*/
|
*/
|
||||||
MD038?: boolean;
|
MD038?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md038.md
|
* MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md038.md
|
||||||
*/
|
*/
|
||||||
"no-space-in-code"?: boolean;
|
"no-space-in-code"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md039.md
|
* MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md039.md
|
||||||
*/
|
*/
|
||||||
MD039?: boolean;
|
MD039?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md039.md
|
* MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md039.md
|
||||||
*/
|
*/
|
||||||
"no-space-in-links"?: boolean;
|
"no-space-in-links"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md040.md
|
* MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md040.md
|
||||||
*/
|
*/
|
||||||
MD040?:
|
MD040?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -695,7 +695,7 @@ export interface ConfigurationStrict {
|
||||||
language_only?: boolean;
|
language_only?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md040.md
|
* MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md040.md
|
||||||
*/
|
*/
|
||||||
"fenced-code-language"?:
|
"fenced-code-language"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -710,7 +710,7 @@ export interface ConfigurationStrict {
|
||||||
language_only?: boolean;
|
language_only?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md041.md
|
* MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md041.md
|
||||||
*/
|
*/
|
||||||
MD041?:
|
MD041?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -725,7 +725,7 @@ export interface ConfigurationStrict {
|
||||||
front_matter_title?: string;
|
front_matter_title?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md041.md
|
* MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md041.md
|
||||||
*/
|
*/
|
||||||
"first-line-heading"?:
|
"first-line-heading"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -740,7 +740,7 @@ export interface ConfigurationStrict {
|
||||||
front_matter_title?: string;
|
front_matter_title?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md041.md
|
* MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md041.md
|
||||||
*/
|
*/
|
||||||
"first-line-h1"?:
|
"first-line-h1"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -755,15 +755,15 @@ export interface ConfigurationStrict {
|
||||||
front_matter_title?: string;
|
front_matter_title?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md042.md
|
* MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md042.md
|
||||||
*/
|
*/
|
||||||
MD042?: boolean;
|
MD042?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md042.md
|
* MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md042.md
|
||||||
*/
|
*/
|
||||||
"no-empty-links"?: boolean;
|
"no-empty-links"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md043.md
|
* MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md043.md
|
||||||
*/
|
*/
|
||||||
MD043?:
|
MD043?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -778,7 +778,7 @@ export interface ConfigurationStrict {
|
||||||
match_case?: boolean;
|
match_case?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md043.md
|
* MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md043.md
|
||||||
*/
|
*/
|
||||||
"required-headings"?:
|
"required-headings"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -793,7 +793,7 @@ export interface ConfigurationStrict {
|
||||||
match_case?: boolean;
|
match_case?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md044.md
|
* MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md044.md
|
||||||
*/
|
*/
|
||||||
MD044?:
|
MD044?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -812,7 +812,7 @@ export interface ConfigurationStrict {
|
||||||
html_elements?: boolean;
|
html_elements?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md044.md
|
* MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md044.md
|
||||||
*/
|
*/
|
||||||
"proper-names"?:
|
"proper-names"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -831,15 +831,15 @@ export interface ConfigurationStrict {
|
||||||
html_elements?: boolean;
|
html_elements?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md045.md
|
* MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md045.md
|
||||||
*/
|
*/
|
||||||
MD045?: boolean;
|
MD045?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md045.md
|
* MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md045.md
|
||||||
*/
|
*/
|
||||||
"no-alt-text"?: boolean;
|
"no-alt-text"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md046.md
|
* MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md046.md
|
||||||
*/
|
*/
|
||||||
MD046?:
|
MD046?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -850,7 +850,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "fenced" | "indented";
|
style?: "consistent" | "fenced" | "indented";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md046.md
|
* MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md046.md
|
||||||
*/
|
*/
|
||||||
"code-block-style"?:
|
"code-block-style"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -861,15 +861,15 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "fenced" | "indented";
|
style?: "consistent" | "fenced" | "indented";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md047.md
|
* MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md047.md
|
||||||
*/
|
*/
|
||||||
MD047?: boolean;
|
MD047?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md047.md
|
* MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md047.md
|
||||||
*/
|
*/
|
||||||
"single-trailing-newline"?: boolean;
|
"single-trailing-newline"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md048.md
|
* MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md048.md
|
||||||
*/
|
*/
|
||||||
MD048?:
|
MD048?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -880,7 +880,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "backtick" | "tilde";
|
style?: "consistent" | "backtick" | "tilde";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md048.md
|
* MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md048.md
|
||||||
*/
|
*/
|
||||||
"code-fence-style"?:
|
"code-fence-style"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -891,7 +891,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "backtick" | "tilde";
|
style?: "consistent" | "backtick" | "tilde";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md049.md
|
* MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md049.md
|
||||||
*/
|
*/
|
||||||
MD049?:
|
MD049?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -902,7 +902,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "asterisk" | "underscore";
|
style?: "consistent" | "asterisk" | "underscore";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md049.md
|
* MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md049.md
|
||||||
*/
|
*/
|
||||||
"emphasis-style"?:
|
"emphasis-style"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -913,7 +913,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "asterisk" | "underscore";
|
style?: "consistent" | "asterisk" | "underscore";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md050.md
|
* MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md050.md
|
||||||
*/
|
*/
|
||||||
MD050?:
|
MD050?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -924,7 +924,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "asterisk" | "underscore";
|
style?: "consistent" | "asterisk" | "underscore";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md050.md
|
* MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md050.md
|
||||||
*/
|
*/
|
||||||
"strong-style"?:
|
"strong-style"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -935,7 +935,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "asterisk" | "underscore";
|
style?: "consistent" | "asterisk" | "underscore";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md051.md
|
* MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md051.md
|
||||||
*/
|
*/
|
||||||
MD051?:
|
MD051?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -946,7 +946,7 @@ export interface ConfigurationStrict {
|
||||||
ignore_case?: boolean;
|
ignore_case?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md051.md
|
* MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md051.md
|
||||||
*/
|
*/
|
||||||
"link-fragments"?:
|
"link-fragments"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -957,7 +957,7 @@ export interface ConfigurationStrict {
|
||||||
ignore_case?: boolean;
|
ignore_case?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md052.md
|
* MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md052.md
|
||||||
*/
|
*/
|
||||||
MD052?:
|
MD052?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -968,7 +968,7 @@ export interface ConfigurationStrict {
|
||||||
shortcut_syntax?: boolean;
|
shortcut_syntax?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md052.md
|
* MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md052.md
|
||||||
*/
|
*/
|
||||||
"reference-links-images"?:
|
"reference-links-images"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -979,7 +979,7 @@ export interface ConfigurationStrict {
|
||||||
shortcut_syntax?: boolean;
|
shortcut_syntax?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md053.md
|
* MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md053.md
|
||||||
*/
|
*/
|
||||||
MD053?:
|
MD053?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -990,7 +990,7 @@ export interface ConfigurationStrict {
|
||||||
ignored_definitions?: string[];
|
ignored_definitions?: string[];
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md053.md
|
* MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md053.md
|
||||||
*/
|
*/
|
||||||
"link-image-reference-definitions"?:
|
"link-image-reference-definitions"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -1001,7 +1001,7 @@ export interface ConfigurationStrict {
|
||||||
ignored_definitions?: string[];
|
ignored_definitions?: string[];
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md054.md
|
* MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md054.md
|
||||||
*/
|
*/
|
||||||
MD054?:
|
MD054?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -1032,7 +1032,7 @@ export interface ConfigurationStrict {
|
||||||
url_inline?: boolean;
|
url_inline?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md054.md
|
* MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md054.md
|
||||||
*/
|
*/
|
||||||
"link-image-style"?:
|
"link-image-style"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -1063,7 +1063,7 @@ export interface ConfigurationStrict {
|
||||||
url_inline?: boolean;
|
url_inline?: boolean;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md055.md
|
* MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md055.md
|
||||||
*/
|
*/
|
||||||
MD055?:
|
MD055?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -1074,7 +1074,7 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "leading_only" | "trailing_only" | "leading_and_trailing" | "no_leading_or_trailing";
|
style?: "consistent" | "leading_only" | "trailing_only" | "leading_and_trailing" | "no_leading_or_trailing";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md055.md
|
* MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md055.md
|
||||||
*/
|
*/
|
||||||
"table-pipe-style"?:
|
"table-pipe-style"?:
|
||||||
| boolean
|
| boolean
|
||||||
|
@ -1085,19 +1085,19 @@ export interface ConfigurationStrict {
|
||||||
style?: "consistent" | "leading_only" | "trailing_only" | "leading_and_trailing" | "no_leading_or_trailing";
|
style?: "consistent" | "leading_only" | "trailing_only" | "leading_and_trailing" | "no_leading_or_trailing";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md056.md
|
* MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md056.md
|
||||||
*/
|
*/
|
||||||
MD056?: boolean;
|
MD056?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md056.md
|
* MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md056.md
|
||||||
*/
|
*/
|
||||||
"table-column-count"?: boolean;
|
"table-column-count"?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md058.md
|
* MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md058.md
|
||||||
*/
|
*/
|
||||||
MD058?: boolean;
|
MD058?: boolean;
|
||||||
/**
|
/**
|
||||||
* MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md058.md
|
* MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md058.md
|
||||||
*/
|
*/
|
||||||
"blanks-around-tables"?: boolean;
|
"blanks-around-tables"?: boolean;
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -12,4 +12,4 @@ module.exports.fixableRuleNames = [
|
||||||
"MD058"
|
"MD058"
|
||||||
];
|
];
|
||||||
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
|
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
|
||||||
module.exports.version = "0.35.0";
|
module.exports.version = "0.36.0";
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "markdownlint",
|
"name": "markdownlint",
|
||||||
"version": "0.35.0",
|
"version": "0.36.0",
|
||||||
"description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
|
"description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
|
||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
"main": "./lib/markdownlint.js",
|
"main": "./lib/markdownlint.js",
|
||||||
|
|
|
@ -7,25 +7,25 @@
|
||||||
// Path to configuration file to extend
|
// Path to configuration file to extend
|
||||||
"extends": null,
|
"extends": null,
|
||||||
|
|
||||||
// MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md001.md
|
// MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md001.md
|
||||||
"MD001": true,
|
"MD001": true,
|
||||||
|
|
||||||
// MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md003.md
|
// MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md003.md
|
||||||
"MD003": {
|
"MD003": {
|
||||||
// Heading style
|
// Heading style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md004.md
|
// MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md004.md
|
||||||
"MD004": {
|
"MD004": {
|
||||||
// List style
|
// List style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md005.md
|
// MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md005.md
|
||||||
"MD005": true,
|
"MD005": true,
|
||||||
|
|
||||||
// MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md007.md
|
// MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md007.md
|
||||||
"MD007": {
|
"MD007": {
|
||||||
// Spaces for indent
|
// Spaces for indent
|
||||||
"indent": 2,
|
"indent": 2,
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
"start_indent": 2
|
"start_indent": 2
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md009.md
|
// MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md009.md
|
||||||
"MD009": {
|
"MD009": {
|
||||||
// Spaces for line break
|
// Spaces for line break
|
||||||
"br_spaces": 2,
|
"br_spaces": 2,
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
"strict": false
|
"strict": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md010.md
|
// MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md010.md
|
||||||
"MD010": {
|
"MD010": {
|
||||||
// Include code blocks
|
// Include code blocks
|
||||||
"code_blocks": true,
|
"code_blocks": true,
|
||||||
|
@ -55,16 +55,16 @@
|
||||||
"spaces_per_tab": 1
|
"spaces_per_tab": 1
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md011.md
|
// MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md011.md
|
||||||
"MD011": true,
|
"MD011": true,
|
||||||
|
|
||||||
// MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md012.md
|
// MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md012.md
|
||||||
"MD012": {
|
"MD012": {
|
||||||
// Consecutive blank lines
|
// Consecutive blank lines
|
||||||
"maximum": 1
|
"maximum": 1
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md013.md
|
// MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md013.md
|
||||||
"MD013": {
|
"MD013": {
|
||||||
// Number of characters
|
// Number of characters
|
||||||
"line_length": 80,
|
"line_length": 80,
|
||||||
|
@ -84,22 +84,22 @@
|
||||||
"stern": false
|
"stern": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md014.md
|
// MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md014.md
|
||||||
"MD014": true,
|
"MD014": true,
|
||||||
|
|
||||||
// MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md018.md
|
// MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md018.md
|
||||||
"MD018": true,
|
"MD018": true,
|
||||||
|
|
||||||
// MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md019.md
|
// MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md019.md
|
||||||
"MD019": true,
|
"MD019": true,
|
||||||
|
|
||||||
// MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md020.md
|
// MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md020.md
|
||||||
"MD020": true,
|
"MD020": true,
|
||||||
|
|
||||||
// MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md021.md
|
// MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md021.md
|
||||||
"MD021": true,
|
"MD021": true,
|
||||||
|
|
||||||
// MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md022.md
|
// MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md022.md
|
||||||
"MD022": {
|
"MD022": {
|
||||||
// Blank lines above heading
|
// Blank lines above heading
|
||||||
"lines_above": 1,
|
"lines_above": 1,
|
||||||
|
@ -107,16 +107,16 @@
|
||||||
"lines_below": 1
|
"lines_below": 1
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md023.md
|
// MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md023.md
|
||||||
"MD023": true,
|
"MD023": true,
|
||||||
|
|
||||||
// MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md024.md
|
// MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md024.md
|
||||||
"MD024": {
|
"MD024": {
|
||||||
// Only check sibling headings
|
// Only check sibling headings
|
||||||
"siblings_only": false
|
"siblings_only": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md025.md
|
// MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md025.md
|
||||||
"MD025": {
|
"MD025": {
|
||||||
// Heading level
|
// Heading level
|
||||||
"level": 1,
|
"level": 1,
|
||||||
|
@ -124,25 +124,25 @@
|
||||||
"front_matter_title": "^\\s*title\\s*[:=]"
|
"front_matter_title": "^\\s*title\\s*[:=]"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md026.md
|
// MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md026.md
|
||||||
"MD026": {
|
"MD026": {
|
||||||
// Punctuation characters
|
// Punctuation characters
|
||||||
"punctuation": ".,;:!。,;:!"
|
"punctuation": ".,;:!。,;:!"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md027.md
|
// MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md027.md
|
||||||
"MD027": true,
|
"MD027": true,
|
||||||
|
|
||||||
// MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md028.md
|
// MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md028.md
|
||||||
"MD028": true,
|
"MD028": true,
|
||||||
|
|
||||||
// MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md029.md
|
// MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md029.md
|
||||||
"MD029": {
|
"MD029": {
|
||||||
// List style
|
// List style
|
||||||
"style": "one_or_ordered"
|
"style": "one_or_ordered"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md030.md
|
// MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md030.md
|
||||||
"MD030": {
|
"MD030": {
|
||||||
// Spaces for single-line unordered list items
|
// Spaces for single-line unordered list items
|
||||||
"ul_single": 1,
|
"ul_single": 1,
|
||||||
|
@ -154,46 +154,46 @@
|
||||||
"ol_multi": 1
|
"ol_multi": 1
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md031.md
|
// MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md031.md
|
||||||
"MD031": {
|
"MD031": {
|
||||||
// Include list items
|
// Include list items
|
||||||
"list_items": true
|
"list_items": true
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md032.md
|
// MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md032.md
|
||||||
"MD032": true,
|
"MD032": true,
|
||||||
|
|
||||||
// MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md
|
// MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md033.md
|
||||||
"MD033": {
|
"MD033": {
|
||||||
// Allowed elements
|
// Allowed elements
|
||||||
"allowed_elements": []
|
"allowed_elements": []
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md034.md
|
// MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md034.md
|
||||||
"MD034": true,
|
"MD034": true,
|
||||||
|
|
||||||
// MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md035.md
|
// MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md035.md
|
||||||
"MD035": {
|
"MD035": {
|
||||||
// Horizontal rule style
|
// Horizontal rule style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md036.md
|
// MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md036.md
|
||||||
"MD036": {
|
"MD036": {
|
||||||
// Punctuation characters
|
// Punctuation characters
|
||||||
"punctuation": ".,;:!?。,;:!?"
|
"punctuation": ".,;:!?。,;:!?"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md037.md
|
// MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md037.md
|
||||||
"MD037": true,
|
"MD037": true,
|
||||||
|
|
||||||
// MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md038.md
|
// MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md038.md
|
||||||
"MD038": true,
|
"MD038": true,
|
||||||
|
|
||||||
// MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md039.md
|
// MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md039.md
|
||||||
"MD039": true,
|
"MD039": true,
|
||||||
|
|
||||||
// MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md040.md
|
// MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md040.md
|
||||||
"MD040": {
|
"MD040": {
|
||||||
// List of languages
|
// List of languages
|
||||||
"allowed_languages": [],
|
"allowed_languages": [],
|
||||||
|
@ -201,7 +201,7 @@
|
||||||
"language_only": false
|
"language_only": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md041.md
|
// MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md041.md
|
||||||
"MD041": {
|
"MD041": {
|
||||||
// Heading level
|
// Heading level
|
||||||
"level": 1,
|
"level": 1,
|
||||||
|
@ -209,10 +209,10 @@
|
||||||
"front_matter_title": "^\\s*title\\s*[:=]"
|
"front_matter_title": "^\\s*title\\s*[:=]"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md042.md
|
// MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md042.md
|
||||||
"MD042": true,
|
"MD042": true,
|
||||||
|
|
||||||
// MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md043.md
|
// MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md043.md
|
||||||
"MD043": {
|
"MD043": {
|
||||||
// List of headings
|
// List of headings
|
||||||
"headings": [],
|
"headings": [],
|
||||||
|
@ -220,7 +220,7 @@
|
||||||
"match_case": false
|
"match_case": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md044.md
|
// MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md044.md
|
||||||
"MD044": {
|
"MD044": {
|
||||||
// List of proper names
|
// List of proper names
|
||||||
"names": [],
|
"names": [],
|
||||||
|
@ -230,49 +230,49 @@
|
||||||
"html_elements": true
|
"html_elements": true
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md045.md
|
// MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md045.md
|
||||||
"MD045": true,
|
"MD045": true,
|
||||||
|
|
||||||
// MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md046.md
|
// MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md046.md
|
||||||
"MD046": {
|
"MD046": {
|
||||||
// Block style
|
// Block style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md047.md
|
// MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md047.md
|
||||||
"MD047": true,
|
"MD047": true,
|
||||||
|
|
||||||
// MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md048.md
|
// MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md048.md
|
||||||
"MD048": {
|
"MD048": {
|
||||||
// Code fence style
|
// Code fence style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md049.md
|
// MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md049.md
|
||||||
"MD049": {
|
"MD049": {
|
||||||
// Emphasis style
|
// Emphasis style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md050.md
|
// MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md050.md
|
||||||
"MD050": {
|
"MD050": {
|
||||||
// Strong style
|
// Strong style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md051.md
|
// MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md051.md
|
||||||
"MD051": {
|
"MD051": {
|
||||||
// Ignore case of fragments
|
// Ignore case of fragments
|
||||||
"ignore_case": false
|
"ignore_case": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md052.md
|
// MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md052.md
|
||||||
"MD052": {
|
"MD052": {
|
||||||
// Include shortcut syntax
|
// Include shortcut syntax
|
||||||
"shortcut_syntax": false
|
"shortcut_syntax": false
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md053.md
|
// MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md053.md
|
||||||
"MD053": {
|
"MD053": {
|
||||||
// Ignored definitions
|
// Ignored definitions
|
||||||
"ignored_definitions": [
|
"ignored_definitions": [
|
||||||
|
@ -280,7 +280,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md054.md
|
// MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md054.md
|
||||||
"MD054": {
|
"MD054": {
|
||||||
// Allow autolinks
|
// Allow autolinks
|
||||||
"autolink": true,
|
"autolink": true,
|
||||||
|
@ -296,15 +296,15 @@
|
||||||
"url_inline": true
|
"url_inline": true
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md055.md
|
// MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md055.md
|
||||||
"MD055": {
|
"MD055": {
|
||||||
// Table pipe style
|
// Table pipe style
|
||||||
"style": "consistent"
|
"style": "consistent"
|
||||||
},
|
},
|
||||||
|
|
||||||
// MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md056.md
|
// MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md056.md
|
||||||
"MD056": true,
|
"MD056": true,
|
||||||
|
|
||||||
// MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md058.md
|
// MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md058.md
|
||||||
"MD058": true
|
"MD058": true
|
||||||
}
|
}
|
|
@ -6,23 +6,23 @@ default: true
|
||||||
# Path to configuration file to extend
|
# Path to configuration file to extend
|
||||||
extends: null
|
extends: null
|
||||||
|
|
||||||
# MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md001.md
|
# MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md001.md
|
||||||
MD001: true
|
MD001: true
|
||||||
|
|
||||||
# MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md003.md
|
# MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md003.md
|
||||||
MD003:
|
MD003:
|
||||||
# Heading style
|
# Heading style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md004.md
|
# MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md004.md
|
||||||
MD004:
|
MD004:
|
||||||
# List style
|
# List style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md005.md
|
# MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md005.md
|
||||||
MD005: true
|
MD005: true
|
||||||
|
|
||||||
# MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md007.md
|
# MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md007.md
|
||||||
MD007:
|
MD007:
|
||||||
# Spaces for indent
|
# Spaces for indent
|
||||||
indent: 2
|
indent: 2
|
||||||
|
@ -31,7 +31,7 @@ MD007:
|
||||||
# Spaces for first level indent (when start_indented is set)
|
# Spaces for first level indent (when start_indented is set)
|
||||||
start_indent: 2
|
start_indent: 2
|
||||||
|
|
||||||
# MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md009.md
|
# MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md009.md
|
||||||
MD009:
|
MD009:
|
||||||
# Spaces for line break
|
# Spaces for line break
|
||||||
br_spaces: 2
|
br_spaces: 2
|
||||||
|
@ -40,7 +40,7 @@ MD009:
|
||||||
# Include unnecessary breaks
|
# Include unnecessary breaks
|
||||||
strict: false
|
strict: false
|
||||||
|
|
||||||
# MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md010.md
|
# MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md010.md
|
||||||
MD010:
|
MD010:
|
||||||
# Include code blocks
|
# Include code blocks
|
||||||
code_blocks: true
|
code_blocks: true
|
||||||
|
@ -49,15 +49,15 @@ MD010:
|
||||||
# Number of spaces for each hard tab
|
# Number of spaces for each hard tab
|
||||||
spaces_per_tab: 1
|
spaces_per_tab: 1
|
||||||
|
|
||||||
# MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md011.md
|
# MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md011.md
|
||||||
MD011: true
|
MD011: true
|
||||||
|
|
||||||
# MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md012.md
|
# MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md012.md
|
||||||
MD012:
|
MD012:
|
||||||
# Consecutive blank lines
|
# Consecutive blank lines
|
||||||
maximum: 1
|
maximum: 1
|
||||||
|
|
||||||
# MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md013.md
|
# MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md013.md
|
||||||
MD013:
|
MD013:
|
||||||
# Number of characters
|
# Number of characters
|
||||||
line_length: 80
|
line_length: 80
|
||||||
|
@ -76,60 +76,60 @@ MD013:
|
||||||
# Stern length checking
|
# Stern length checking
|
||||||
stern: false
|
stern: false
|
||||||
|
|
||||||
# MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md014.md
|
# MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md014.md
|
||||||
MD014: true
|
MD014: true
|
||||||
|
|
||||||
# MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md018.md
|
# MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md018.md
|
||||||
MD018: true
|
MD018: true
|
||||||
|
|
||||||
# MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md019.md
|
# MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md019.md
|
||||||
MD019: true
|
MD019: true
|
||||||
|
|
||||||
# MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md020.md
|
# MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md020.md
|
||||||
MD020: true
|
MD020: true
|
||||||
|
|
||||||
# MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md021.md
|
# MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md021.md
|
||||||
MD021: true
|
MD021: true
|
||||||
|
|
||||||
# MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md022.md
|
# MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md022.md
|
||||||
MD022:
|
MD022:
|
||||||
# Blank lines above heading
|
# Blank lines above heading
|
||||||
lines_above: 1
|
lines_above: 1
|
||||||
# Blank lines below heading
|
# Blank lines below heading
|
||||||
lines_below: 1
|
lines_below: 1
|
||||||
|
|
||||||
# MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md023.md
|
# MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md023.md
|
||||||
MD023: true
|
MD023: true
|
||||||
|
|
||||||
# MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md024.md
|
# MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md024.md
|
||||||
MD024:
|
MD024:
|
||||||
# Only check sibling headings
|
# Only check sibling headings
|
||||||
siblings_only: false
|
siblings_only: false
|
||||||
|
|
||||||
# MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md025.md
|
# MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md025.md
|
||||||
MD025:
|
MD025:
|
||||||
# Heading level
|
# Heading level
|
||||||
level: 1
|
level: 1
|
||||||
# RegExp for matching title in front matter
|
# RegExp for matching title in front matter
|
||||||
front_matter_title: "^\\s*title\\s*[:=]"
|
front_matter_title: "^\\s*title\\s*[:=]"
|
||||||
|
|
||||||
# MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md026.md
|
# MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md026.md
|
||||||
MD026:
|
MD026:
|
||||||
# Punctuation characters
|
# Punctuation characters
|
||||||
punctuation: ".,;:!。,;:!"
|
punctuation: ".,;:!。,;:!"
|
||||||
|
|
||||||
# MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md027.md
|
# MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md027.md
|
||||||
MD027: true
|
MD027: true
|
||||||
|
|
||||||
# MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md028.md
|
# MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md028.md
|
||||||
MD028: true
|
MD028: true
|
||||||
|
|
||||||
# MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md029.md
|
# MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md029.md
|
||||||
MD029:
|
MD029:
|
||||||
# List style
|
# List style
|
||||||
style: "one_or_ordered"
|
style: "one_or_ordered"
|
||||||
|
|
||||||
# MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md030.md
|
# MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md030.md
|
||||||
MD030:
|
MD030:
|
||||||
# Spaces for single-line unordered list items
|
# Spaces for single-line unordered list items
|
||||||
ul_single: 1
|
ul_single: 1
|
||||||
|
@ -140,66 +140,66 @@ MD030:
|
||||||
# Spaces for multi-line ordered list items
|
# Spaces for multi-line ordered list items
|
||||||
ol_multi: 1
|
ol_multi: 1
|
||||||
|
|
||||||
# MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md031.md
|
# MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md031.md
|
||||||
MD031:
|
MD031:
|
||||||
# Include list items
|
# Include list items
|
||||||
list_items: true
|
list_items: true
|
||||||
|
|
||||||
# MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md032.md
|
# MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md032.md
|
||||||
MD032: true
|
MD032: true
|
||||||
|
|
||||||
# MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md
|
# MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md033.md
|
||||||
MD033:
|
MD033:
|
||||||
# Allowed elements
|
# Allowed elements
|
||||||
allowed_elements: []
|
allowed_elements: []
|
||||||
|
|
||||||
# MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md034.md
|
# MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md034.md
|
||||||
MD034: true
|
MD034: true
|
||||||
|
|
||||||
# MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md035.md
|
# MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md035.md
|
||||||
MD035:
|
MD035:
|
||||||
# Horizontal rule style
|
# Horizontal rule style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md036.md
|
# MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md036.md
|
||||||
MD036:
|
MD036:
|
||||||
# Punctuation characters
|
# Punctuation characters
|
||||||
punctuation: ".,;:!?。,;:!?"
|
punctuation: ".,;:!?。,;:!?"
|
||||||
|
|
||||||
# MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md037.md
|
# MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md037.md
|
||||||
MD037: true
|
MD037: true
|
||||||
|
|
||||||
# MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md038.md
|
# MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md038.md
|
||||||
MD038: true
|
MD038: true
|
||||||
|
|
||||||
# MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md039.md
|
# MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md039.md
|
||||||
MD039: true
|
MD039: true
|
||||||
|
|
||||||
# MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md040.md
|
# MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md040.md
|
||||||
MD040:
|
MD040:
|
||||||
# List of languages
|
# List of languages
|
||||||
allowed_languages: []
|
allowed_languages: []
|
||||||
# Require language only
|
# Require language only
|
||||||
language_only: false
|
language_only: false
|
||||||
|
|
||||||
# MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md041.md
|
# MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md041.md
|
||||||
MD041:
|
MD041:
|
||||||
# Heading level
|
# Heading level
|
||||||
level: 1
|
level: 1
|
||||||
# RegExp for matching title in front matter
|
# RegExp for matching title in front matter
|
||||||
front_matter_title: "^\\s*title\\s*[:=]"
|
front_matter_title: "^\\s*title\\s*[:=]"
|
||||||
|
|
||||||
# MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md042.md
|
# MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md042.md
|
||||||
MD042: true
|
MD042: true
|
||||||
|
|
||||||
# MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md043.md
|
# MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md043.md
|
||||||
MD043:
|
MD043:
|
||||||
# List of headings
|
# List of headings
|
||||||
headings: []
|
headings: []
|
||||||
# Match case of headings
|
# Match case of headings
|
||||||
match_case: false
|
match_case: false
|
||||||
|
|
||||||
# MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md044.md
|
# MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md044.md
|
||||||
MD044:
|
MD044:
|
||||||
# List of proper names
|
# List of proper names
|
||||||
names: []
|
names: []
|
||||||
|
@ -208,49 +208,49 @@ MD044:
|
||||||
# Include HTML elements
|
# Include HTML elements
|
||||||
html_elements: true
|
html_elements: true
|
||||||
|
|
||||||
# MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md045.md
|
# MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md045.md
|
||||||
MD045: true
|
MD045: true
|
||||||
|
|
||||||
# MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md046.md
|
# MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md046.md
|
||||||
MD046:
|
MD046:
|
||||||
# Block style
|
# Block style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md047.md
|
# MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md047.md
|
||||||
MD047: true
|
MD047: true
|
||||||
|
|
||||||
# MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md048.md
|
# MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md048.md
|
||||||
MD048:
|
MD048:
|
||||||
# Code fence style
|
# Code fence style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md049.md
|
# MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md049.md
|
||||||
MD049:
|
MD049:
|
||||||
# Emphasis style
|
# Emphasis style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md050.md
|
# MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md050.md
|
||||||
MD050:
|
MD050:
|
||||||
# Strong style
|
# Strong style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md051.md
|
# MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md051.md
|
||||||
MD051:
|
MD051:
|
||||||
# Ignore case of fragments
|
# Ignore case of fragments
|
||||||
ignore_case: false
|
ignore_case: false
|
||||||
|
|
||||||
# MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md052.md
|
# MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md052.md
|
||||||
MD052:
|
MD052:
|
||||||
# Include shortcut syntax
|
# Include shortcut syntax
|
||||||
shortcut_syntax: false
|
shortcut_syntax: false
|
||||||
|
|
||||||
# MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md053.md
|
# MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md053.md
|
||||||
MD053:
|
MD053:
|
||||||
# Ignored definitions
|
# Ignored definitions
|
||||||
ignored_definitions:
|
ignored_definitions:
|
||||||
- "//"
|
- "//"
|
||||||
|
|
||||||
# MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md054.md
|
# MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md054.md
|
||||||
MD054:
|
MD054:
|
||||||
# Allow autolinks
|
# Allow autolinks
|
||||||
autolink: true
|
autolink: true
|
||||||
|
@ -265,13 +265,13 @@ MD054:
|
||||||
# Allow URLs as inline links
|
# Allow URLs as inline links
|
||||||
url_inline: true
|
url_inline: true
|
||||||
|
|
||||||
# MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md055.md
|
# MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md055.md
|
||||||
MD055:
|
MD055:
|
||||||
# Table pipe style
|
# Table pipe style
|
||||||
style: "consistent"
|
style: "consistent"
|
||||||
|
|
||||||
# MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md056.md
|
# MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md056.md
|
||||||
MD056: true
|
MD056: true
|
||||||
|
|
||||||
# MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md058.md
|
# MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md058.md
|
||||||
MD058: true
|
MD058: true
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
"$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.35.0/schema/markdownlint-config-schema-strict.json",
|
"$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.36.0/schema/markdownlint-config-schema-strict.json",
|
||||||
"title": "markdownlint configuration schema",
|
"title": "markdownlint configuration schema",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"$schema": {
|
"$schema": {
|
||||||
"description": "JSON Schema URI (expected by some editors)",
|
"description": "JSON Schema URI (expected by some editors)",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.35.0/schema/markdownlint-config-schema.json"
|
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.36.0/schema/markdownlint-config-schema.json"
|
||||||
},
|
},
|
||||||
"default": {
|
"default": {
|
||||||
"description": "Default state for all rules",
|
"description": "Default state for all rules",
|
||||||
|
@ -23,17 +23,17 @@
|
||||||
"default": null
|
"default": null
|
||||||
},
|
},
|
||||||
"MD001": {
|
"MD001": {
|
||||||
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md001.md",
|
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md001.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"heading-increment": {
|
"heading-increment": {
|
||||||
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md001.md",
|
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md001.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD003": {
|
"MD003": {
|
||||||
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md003.md",
|
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md003.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"heading-style": {
|
"heading-style": {
|
||||||
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md003.md",
|
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md003.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -81,7 +81,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD004": {
|
"MD004": {
|
||||||
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md004.md",
|
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md004.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"ul-style": {
|
"ul-style": {
|
||||||
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md004.md",
|
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md004.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -127,17 +127,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD005": {
|
"MD005": {
|
||||||
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md005.md",
|
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md005.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"list-indent": {
|
"list-indent": {
|
||||||
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md005.md",
|
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md005.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD007": {
|
"MD007": {
|
||||||
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md007.md",
|
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md007.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -165,7 +165,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"ul-indent": {
|
"ul-indent": {
|
||||||
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md007.md",
|
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md007.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -193,7 +193,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD009": {
|
"MD009": {
|
||||||
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md009.md",
|
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md009.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -220,7 +220,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-trailing-spaces": {
|
"no-trailing-spaces": {
|
||||||
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md009.md",
|
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md009.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -247,7 +247,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD010": {
|
"MD010": {
|
||||||
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md010.md",
|
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md010.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -277,7 +277,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-hard-tabs": {
|
"no-hard-tabs": {
|
||||||
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md010.md",
|
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md010.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -307,17 +307,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD011": {
|
"MD011": {
|
||||||
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md011.md",
|
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md011.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-reversed-links": {
|
"no-reversed-links": {
|
||||||
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md011.md",
|
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md011.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD012": {
|
"MD012": {
|
||||||
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md012.md",
|
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md012.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -334,7 +334,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-multiple-blanks": {
|
"no-multiple-blanks": {
|
||||||
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md012.md",
|
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md012.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -351,7 +351,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD013": {
|
"MD013": {
|
||||||
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md013.md",
|
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md013.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -405,7 +405,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"line-length": {
|
"line-length": {
|
||||||
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md013.md",
|
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md013.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -459,57 +459,57 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD014": {
|
"MD014": {
|
||||||
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md014.md",
|
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md014.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"commands-show-output": {
|
"commands-show-output": {
|
||||||
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md014.md",
|
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md014.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD018": {
|
"MD018": {
|
||||||
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md018.md",
|
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md018.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-missing-space-atx": {
|
"no-missing-space-atx": {
|
||||||
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md018.md",
|
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md018.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD019": {
|
"MD019": {
|
||||||
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md019.md",
|
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md019.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-multiple-space-atx": {
|
"no-multiple-space-atx": {
|
||||||
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md019.md",
|
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md019.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD020": {
|
"MD020": {
|
||||||
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md020.md",
|
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md020.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-missing-space-closed-atx": {
|
"no-missing-space-closed-atx": {
|
||||||
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md020.md",
|
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md020.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD021": {
|
"MD021": {
|
||||||
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md021.md",
|
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md021.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-multiple-space-closed-atx": {
|
"no-multiple-space-closed-atx": {
|
||||||
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md021.md",
|
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md021.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD022": {
|
"MD022": {
|
||||||
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md022.md",
|
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md022.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -544,7 +544,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"blanks-around-headings": {
|
"blanks-around-headings": {
|
||||||
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md022.md",
|
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md022.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -579,17 +579,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD023": {
|
"MD023": {
|
||||||
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md023.md",
|
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md023.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"heading-start-left": {
|
"heading-start-left": {
|
||||||
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md023.md",
|
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md023.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD024": {
|
"MD024": {
|
||||||
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md024.md",
|
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md024.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -605,7 +605,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-duplicate-heading": {
|
"no-duplicate-heading": {
|
||||||
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md024.md",
|
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md024.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -621,7 +621,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD025": {
|
"MD025": {
|
||||||
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md025.md",
|
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md025.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -644,7 +644,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"single-title": {
|
"single-title": {
|
||||||
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md025.md",
|
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md025.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -667,7 +667,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"single-h1": {
|
"single-h1": {
|
||||||
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md025.md",
|
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md025.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -690,7 +690,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD026": {
|
"MD026": {
|
||||||
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md026.md",
|
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md026.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -706,7 +706,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-trailing-punctuation": {
|
"no-trailing-punctuation": {
|
||||||
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md026.md",
|
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md026.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -722,27 +722,27 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD027": {
|
"MD027": {
|
||||||
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md027.md",
|
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md027.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-multiple-space-blockquote": {
|
"no-multiple-space-blockquote": {
|
||||||
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md027.md",
|
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md027.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD028": {
|
"MD028": {
|
||||||
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md028.md",
|
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md028.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-blanks-blockquote": {
|
"no-blanks-blockquote": {
|
||||||
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md028.md",
|
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md028.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD029": {
|
"MD029": {
|
||||||
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md029.md",
|
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md029.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -764,7 +764,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"ol-prefix": {
|
"ol-prefix": {
|
||||||
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md029.md",
|
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md029.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -786,7 +786,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD030": {
|
"MD030": {
|
||||||
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md030.md",
|
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md030.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -821,7 +821,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"list-marker-space": {
|
"list-marker-space": {
|
||||||
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md030.md",
|
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md030.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -856,7 +856,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD031": {
|
"MD031": {
|
||||||
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md031.md",
|
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md031.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -872,7 +872,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"blanks-around-fences": {
|
"blanks-around-fences": {
|
||||||
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md031.md",
|
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md031.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -888,17 +888,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD032": {
|
"MD032": {
|
||||||
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md032.md",
|
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md032.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"blanks-around-lists": {
|
"blanks-around-lists": {
|
||||||
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md032.md",
|
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md032.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD033": {
|
"MD033": {
|
||||||
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md",
|
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md033.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -917,7 +917,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-inline-html": {
|
"no-inline-html": {
|
||||||
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md",
|
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md033.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -936,17 +936,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD034": {
|
"MD034": {
|
||||||
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md034.md",
|
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md034.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-bare-urls": {
|
"no-bare-urls": {
|
||||||
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md034.md",
|
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md034.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD035": {
|
"MD035": {
|
||||||
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md035.md",
|
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md035.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -962,7 +962,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"hr-style": {
|
"hr-style": {
|
||||||
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md035.md",
|
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md035.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -978,7 +978,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD036": {
|
"MD036": {
|
||||||
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md036.md",
|
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md036.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -994,7 +994,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-emphasis-as-heading": {
|
"no-emphasis-as-heading": {
|
||||||
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md036.md",
|
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md036.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1010,37 +1010,37 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD037": {
|
"MD037": {
|
||||||
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md037.md",
|
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md037.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-space-in-emphasis": {
|
"no-space-in-emphasis": {
|
||||||
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md037.md",
|
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md037.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD038": {
|
"MD038": {
|
||||||
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md038.md",
|
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md038.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-space-in-code": {
|
"no-space-in-code": {
|
||||||
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md038.md",
|
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md038.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD039": {
|
"MD039": {
|
||||||
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md039.md",
|
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md039.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-space-in-links": {
|
"no-space-in-links": {
|
||||||
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md039.md",
|
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md039.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD040": {
|
"MD040": {
|
||||||
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md040.md",
|
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md040.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1064,7 +1064,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"fenced-code-language": {
|
"fenced-code-language": {
|
||||||
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md040.md",
|
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md040.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1088,7 +1088,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD041": {
|
"MD041": {
|
||||||
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md041.md",
|
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md041.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1111,7 +1111,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"first-line-heading": {
|
"first-line-heading": {
|
||||||
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md041.md",
|
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md041.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1134,7 +1134,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"first-line-h1": {
|
"first-line-h1": {
|
||||||
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md041.md",
|
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md041.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1157,17 +1157,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD042": {
|
"MD042": {
|
||||||
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md042.md",
|
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md042.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-empty-links": {
|
"no-empty-links": {
|
||||||
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md042.md",
|
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md042.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD043": {
|
"MD043": {
|
||||||
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md043.md",
|
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md043.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1192,7 +1192,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"required-headings": {
|
"required-headings": {
|
||||||
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md043.md",
|
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md043.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1217,7 +1217,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD044": {
|
"MD044": {
|
||||||
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md044.md",
|
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md044.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1246,7 +1246,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"proper-names": {
|
"proper-names": {
|
||||||
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md044.md",
|
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md044.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1275,17 +1275,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD045": {
|
"MD045": {
|
||||||
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md045.md",
|
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md045.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-alt-text": {
|
"no-alt-text": {
|
||||||
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md045.md",
|
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md045.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD046": {
|
"MD046": {
|
||||||
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md046.md",
|
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md046.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1306,7 +1306,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"code-block-style": {
|
"code-block-style": {
|
||||||
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md046.md",
|
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md046.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1327,17 +1327,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD047": {
|
"MD047": {
|
||||||
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md047.md",
|
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md047.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"single-trailing-newline": {
|
"single-trailing-newline": {
|
||||||
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md047.md",
|
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md047.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD048": {
|
"MD048": {
|
||||||
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md048.md",
|
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md048.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1358,7 +1358,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"code-fence-style": {
|
"code-fence-style": {
|
||||||
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md048.md",
|
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md048.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1379,7 +1379,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD049": {
|
"MD049": {
|
||||||
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md049.md",
|
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md049.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1400,7 +1400,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"emphasis-style": {
|
"emphasis-style": {
|
||||||
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md049.md",
|
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md049.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1421,7 +1421,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD050": {
|
"MD050": {
|
||||||
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md050.md",
|
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md050.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1442,7 +1442,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"strong-style": {
|
"strong-style": {
|
||||||
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md050.md",
|
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md050.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1463,7 +1463,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD051": {
|
"MD051": {
|
||||||
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md051.md",
|
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md051.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1479,7 +1479,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"link-fragments": {
|
"link-fragments": {
|
||||||
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md051.md",
|
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md051.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1495,7 +1495,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD052": {
|
"MD052": {
|
||||||
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md052.md",
|
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md052.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1511,7 +1511,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"reference-links-images": {
|
"reference-links-images": {
|
||||||
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md052.md",
|
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md052.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1527,7 +1527,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD053": {
|
"MD053": {
|
||||||
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md053.md",
|
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md053.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1548,7 +1548,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"link-image-reference-definitions": {
|
"link-image-reference-definitions": {
|
||||||
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md053.md",
|
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md053.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1569,7 +1569,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD054": {
|
"MD054": {
|
||||||
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md054.md",
|
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md054.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1610,7 +1610,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"link-image-style": {
|
"link-image-style": {
|
||||||
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md054.md",
|
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md054.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1651,7 +1651,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD055": {
|
"MD055": {
|
||||||
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md055.md",
|
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md055.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1674,7 +1674,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"table-pipe-style": {
|
"table-pipe-style": {
|
||||||
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md055.md",
|
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md055.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1697,22 +1697,22 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD056": {
|
"MD056": {
|
||||||
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md056.md",
|
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md056.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"table-column-count": {
|
"table-column-count": {
|
||||||
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md056.md",
|
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md056.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD058": {
|
"MD058": {
|
||||||
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md058.md",
|
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md058.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"blanks-around-tables": {
|
"blanks-around-tables": {
|
||||||
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md058.md",
|
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md058.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
"$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.35.0/schema/markdownlint-config-schema.json",
|
"$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.36.0/schema/markdownlint-config-schema.json",
|
||||||
"title": "markdownlint configuration schema",
|
"title": "markdownlint configuration schema",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"$schema": {
|
"$schema": {
|
||||||
"description": "JSON Schema URI (expected by some editors)",
|
"description": "JSON Schema URI (expected by some editors)",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.35.0/schema/markdownlint-config-schema.json"
|
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.36.0/schema/markdownlint-config-schema.json"
|
||||||
},
|
},
|
||||||
"default": {
|
"default": {
|
||||||
"description": "Default state for all rules",
|
"description": "Default state for all rules",
|
||||||
|
@ -23,17 +23,17 @@
|
||||||
"default": null
|
"default": null
|
||||||
},
|
},
|
||||||
"MD001": {
|
"MD001": {
|
||||||
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md001.md",
|
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md001.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"heading-increment": {
|
"heading-increment": {
|
||||||
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md001.md",
|
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md001.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD003": {
|
"MD003": {
|
||||||
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md003.md",
|
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md003.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"heading-style": {
|
"heading-style": {
|
||||||
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md003.md",
|
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md003.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -81,7 +81,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD004": {
|
"MD004": {
|
||||||
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md004.md",
|
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md004.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"ul-style": {
|
"ul-style": {
|
||||||
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md004.md",
|
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md004.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -127,17 +127,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD005": {
|
"MD005": {
|
||||||
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md005.md",
|
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md005.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"list-indent": {
|
"list-indent": {
|
||||||
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md005.md",
|
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md005.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD007": {
|
"MD007": {
|
||||||
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md007.md",
|
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md007.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -165,7 +165,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"ul-indent": {
|
"ul-indent": {
|
||||||
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md007.md",
|
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md007.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -193,7 +193,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD009": {
|
"MD009": {
|
||||||
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md009.md",
|
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md009.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -220,7 +220,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-trailing-spaces": {
|
"no-trailing-spaces": {
|
||||||
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md009.md",
|
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md009.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -247,7 +247,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD010": {
|
"MD010": {
|
||||||
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md010.md",
|
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md010.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -277,7 +277,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-hard-tabs": {
|
"no-hard-tabs": {
|
||||||
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md010.md",
|
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md010.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -307,17 +307,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD011": {
|
"MD011": {
|
||||||
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md011.md",
|
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md011.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-reversed-links": {
|
"no-reversed-links": {
|
||||||
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md011.md",
|
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md011.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD012": {
|
"MD012": {
|
||||||
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md012.md",
|
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md012.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -334,7 +334,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-multiple-blanks": {
|
"no-multiple-blanks": {
|
||||||
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md012.md",
|
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md012.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -351,7 +351,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD013": {
|
"MD013": {
|
||||||
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md013.md",
|
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md013.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -405,7 +405,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"line-length": {
|
"line-length": {
|
||||||
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md013.md",
|
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md013.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -459,57 +459,57 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD014": {
|
"MD014": {
|
||||||
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md014.md",
|
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md014.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"commands-show-output": {
|
"commands-show-output": {
|
||||||
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md014.md",
|
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md014.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD018": {
|
"MD018": {
|
||||||
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md018.md",
|
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md018.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-missing-space-atx": {
|
"no-missing-space-atx": {
|
||||||
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md018.md",
|
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md018.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD019": {
|
"MD019": {
|
||||||
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md019.md",
|
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md019.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-multiple-space-atx": {
|
"no-multiple-space-atx": {
|
||||||
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md019.md",
|
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md019.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD020": {
|
"MD020": {
|
||||||
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md020.md",
|
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md020.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-missing-space-closed-atx": {
|
"no-missing-space-closed-atx": {
|
||||||
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md020.md",
|
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md020.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD021": {
|
"MD021": {
|
||||||
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md021.md",
|
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md021.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-multiple-space-closed-atx": {
|
"no-multiple-space-closed-atx": {
|
||||||
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md021.md",
|
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md021.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD022": {
|
"MD022": {
|
||||||
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md022.md",
|
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md022.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -544,7 +544,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"blanks-around-headings": {
|
"blanks-around-headings": {
|
||||||
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md022.md",
|
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md022.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -579,17 +579,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD023": {
|
"MD023": {
|
||||||
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md023.md",
|
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md023.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"heading-start-left": {
|
"heading-start-left": {
|
||||||
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md023.md",
|
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md023.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD024": {
|
"MD024": {
|
||||||
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md024.md",
|
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md024.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -605,7 +605,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-duplicate-heading": {
|
"no-duplicate-heading": {
|
||||||
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md024.md",
|
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md024.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -621,7 +621,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD025": {
|
"MD025": {
|
||||||
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md025.md",
|
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md025.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -644,7 +644,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"single-title": {
|
"single-title": {
|
||||||
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md025.md",
|
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md025.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -667,7 +667,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"single-h1": {
|
"single-h1": {
|
||||||
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md025.md",
|
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md025.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -690,7 +690,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD026": {
|
"MD026": {
|
||||||
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md026.md",
|
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md026.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -706,7 +706,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-trailing-punctuation": {
|
"no-trailing-punctuation": {
|
||||||
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md026.md",
|
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md026.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -722,27 +722,27 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD027": {
|
"MD027": {
|
||||||
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md027.md",
|
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md027.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-multiple-space-blockquote": {
|
"no-multiple-space-blockquote": {
|
||||||
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md027.md",
|
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md027.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD028": {
|
"MD028": {
|
||||||
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md028.md",
|
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md028.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-blanks-blockquote": {
|
"no-blanks-blockquote": {
|
||||||
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md028.md",
|
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md028.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD029": {
|
"MD029": {
|
||||||
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md029.md",
|
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md029.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -764,7 +764,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"ol-prefix": {
|
"ol-prefix": {
|
||||||
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md029.md",
|
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md029.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -786,7 +786,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD030": {
|
"MD030": {
|
||||||
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md030.md",
|
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md030.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -821,7 +821,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"list-marker-space": {
|
"list-marker-space": {
|
||||||
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md030.md",
|
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md030.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -856,7 +856,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD031": {
|
"MD031": {
|
||||||
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md031.md",
|
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md031.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -872,7 +872,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"blanks-around-fences": {
|
"blanks-around-fences": {
|
||||||
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md031.md",
|
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md031.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -888,17 +888,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD032": {
|
"MD032": {
|
||||||
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md032.md",
|
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md032.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"blanks-around-lists": {
|
"blanks-around-lists": {
|
||||||
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md032.md",
|
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md032.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD033": {
|
"MD033": {
|
||||||
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md",
|
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md033.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -917,7 +917,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-inline-html": {
|
"no-inline-html": {
|
||||||
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md",
|
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md033.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -936,17 +936,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD034": {
|
"MD034": {
|
||||||
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md034.md",
|
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md034.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-bare-urls": {
|
"no-bare-urls": {
|
||||||
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md034.md",
|
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md034.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD035": {
|
"MD035": {
|
||||||
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md035.md",
|
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md035.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -962,7 +962,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"hr-style": {
|
"hr-style": {
|
||||||
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md035.md",
|
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md035.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -978,7 +978,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD036": {
|
"MD036": {
|
||||||
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md036.md",
|
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md036.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -994,7 +994,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"no-emphasis-as-heading": {
|
"no-emphasis-as-heading": {
|
||||||
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md036.md",
|
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md036.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1010,37 +1010,37 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD037": {
|
"MD037": {
|
||||||
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md037.md",
|
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md037.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-space-in-emphasis": {
|
"no-space-in-emphasis": {
|
||||||
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md037.md",
|
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md037.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD038": {
|
"MD038": {
|
||||||
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md038.md",
|
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md038.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-space-in-code": {
|
"no-space-in-code": {
|
||||||
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md038.md",
|
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md038.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD039": {
|
"MD039": {
|
||||||
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md039.md",
|
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md039.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-space-in-links": {
|
"no-space-in-links": {
|
||||||
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md039.md",
|
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md039.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD040": {
|
"MD040": {
|
||||||
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md040.md",
|
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md040.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1064,7 +1064,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"fenced-code-language": {
|
"fenced-code-language": {
|
||||||
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md040.md",
|
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md040.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1088,7 +1088,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD041": {
|
"MD041": {
|
||||||
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md041.md",
|
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md041.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1111,7 +1111,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"first-line-heading": {
|
"first-line-heading": {
|
||||||
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md041.md",
|
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md041.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1134,7 +1134,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"first-line-h1": {
|
"first-line-h1": {
|
||||||
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md041.md",
|
"description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md041.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1157,17 +1157,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD042": {
|
"MD042": {
|
||||||
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md042.md",
|
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md042.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-empty-links": {
|
"no-empty-links": {
|
||||||
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md042.md",
|
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md042.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD043": {
|
"MD043": {
|
||||||
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md043.md",
|
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md043.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1192,7 +1192,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"required-headings": {
|
"required-headings": {
|
||||||
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md043.md",
|
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md043.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1217,7 +1217,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD044": {
|
"MD044": {
|
||||||
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md044.md",
|
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md044.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1246,7 +1246,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"proper-names": {
|
"proper-names": {
|
||||||
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md044.md",
|
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md044.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1275,17 +1275,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD045": {
|
"MD045": {
|
||||||
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md045.md",
|
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md045.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"no-alt-text": {
|
"no-alt-text": {
|
||||||
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md045.md",
|
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md045.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD046": {
|
"MD046": {
|
||||||
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md046.md",
|
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md046.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1306,7 +1306,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"code-block-style": {
|
"code-block-style": {
|
||||||
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md046.md",
|
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md046.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1327,17 +1327,17 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD047": {
|
"MD047": {
|
||||||
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md047.md",
|
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md047.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"single-trailing-newline": {
|
"single-trailing-newline": {
|
||||||
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md047.md",
|
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md047.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD048": {
|
"MD048": {
|
||||||
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md048.md",
|
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md048.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1358,7 +1358,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"code-fence-style": {
|
"code-fence-style": {
|
||||||
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md048.md",
|
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md048.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1379,7 +1379,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD049": {
|
"MD049": {
|
||||||
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md049.md",
|
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md049.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1400,7 +1400,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"emphasis-style": {
|
"emphasis-style": {
|
||||||
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md049.md",
|
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md049.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1421,7 +1421,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD050": {
|
"MD050": {
|
||||||
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md050.md",
|
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md050.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1442,7 +1442,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"strong-style": {
|
"strong-style": {
|
||||||
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md050.md",
|
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md050.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1463,7 +1463,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD051": {
|
"MD051": {
|
||||||
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md051.md",
|
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md051.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1479,7 +1479,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"link-fragments": {
|
"link-fragments": {
|
||||||
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md051.md",
|
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md051.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1495,7 +1495,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD052": {
|
"MD052": {
|
||||||
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md052.md",
|
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md052.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1511,7 +1511,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"reference-links-images": {
|
"reference-links-images": {
|
||||||
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md052.md",
|
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md052.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1527,7 +1527,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD053": {
|
"MD053": {
|
||||||
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md053.md",
|
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md053.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1548,7 +1548,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"link-image-reference-definitions": {
|
"link-image-reference-definitions": {
|
||||||
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md053.md",
|
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md053.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1569,7 +1569,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD054": {
|
"MD054": {
|
||||||
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md054.md",
|
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md054.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1610,7 +1610,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"link-image-style": {
|
"link-image-style": {
|
||||||
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md054.md",
|
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md054.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1651,7 +1651,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD055": {
|
"MD055": {
|
||||||
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md055.md",
|
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md055.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1674,7 +1674,7 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"table-pipe-style": {
|
"table-pipe-style": {
|
||||||
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md055.md",
|
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md055.md",
|
||||||
"type": [
|
"type": [
|
||||||
"boolean",
|
"boolean",
|
||||||
"object"
|
"object"
|
||||||
|
@ -1697,22 +1697,22 @@
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
"MD056": {
|
"MD056": {
|
||||||
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md056.md",
|
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md056.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"table-column-count": {
|
"table-column-count": {
|
||||||
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md056.md",
|
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md056.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"MD058": {
|
"MD058": {
|
||||||
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md058.md",
|
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md058.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"blanks-around-tables": {
|
"blanks-around-tables": {
|
||||||
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md058.md",
|
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.0/doc/md058.md",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue