markdownlint-cli2 0.19.0 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.md +11 -11
- package/markdownlint-cli2.mjs +6 -2
- package/package.json +8 -8
- package/schema/markdownlint-cli2-config-schema.json +17 -17
- package/schema/markdownlint-config-schema.json +120 -110
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -150,7 +150,7 @@ A container image [`davidanson/markdownlint-cli2`][docker-hub-markdownlint-cli2]
|
|
|
150
150
|
can also be used (e.g., as part of a CI pipeline):
|
|
151
151
|
|
|
152
152
|
```bash
|
|
153
|
-
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.
|
|
153
|
+
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.20.0 "**/*.md" "#node_modules"
|
|
154
154
|
```
|
|
155
155
|
|
|
156
156
|
Notes:
|
|
@@ -167,7 +167,7 @@ Notes:
|
|
|
167
167
|
- A custom working directory can be specified with Docker's `-w` flag:
|
|
168
168
|
|
|
169
169
|
```bash
|
|
170
|
-
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.
|
|
170
|
+
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.20.0 "**/*.md" "#node_modules"
|
|
171
171
|
```
|
|
172
172
|
|
|
173
173
|
For convenience, the container image
|
|
@@ -452,7 +452,7 @@ reference to the `repos` list in that project's `.pre-commit-config.yaml` like:
|
|
|
452
452
|
|
|
453
453
|
```yaml
|
|
454
454
|
- repo: https://github.com/DavidAnson/markdownlint-cli2
|
|
455
|
-
rev: v0.
|
|
455
|
+
rev: v0.20.0
|
|
456
456
|
hooks:
|
|
457
457
|
- id: markdownlint-cli2
|
|
458
458
|
```
|
|
@@ -488,12 +488,12 @@ See [CHANGELOG.md][changelog].
|
|
|
488
488
|
[markdown-it-plugins]: https://www.npmjs.com/search?q=keywords:markdown-it-plugin
|
|
489
489
|
[markdown-it-syntax-extensions]: https://github.com/markdown-it/markdown-it#syntax-extensions
|
|
490
490
|
[markdownlint]: https://github.com/DavidAnson/markdownlint
|
|
491
|
-
[markdownlint-config]: https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
492
|
-
[markdownlint-configuration]: https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
493
|
-
[markdownlint-custom-rules]: https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
494
|
-
[markdownlint-options]: https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
495
|
-
[markdownlint-rules-aliases]: https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
496
|
-
[markdownlint-rules-tags]: https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
491
|
+
[markdownlint-config]: https://github.com/DavidAnson/markdownlint/blob/v0.40.0/README.md#optionsconfig
|
|
492
|
+
[markdownlint-configuration]: https://github.com/DavidAnson/markdownlint/blob/v0.40.0/README.md#configuration
|
|
493
|
+
[markdownlint-custom-rules]: https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/CustomRules.md
|
|
494
|
+
[markdownlint-options]: https://github.com/DavidAnson/markdownlint/blob/v0.40.0/README.md#options
|
|
495
|
+
[markdownlint-rules-aliases]: https://github.com/DavidAnson/markdownlint/blob/v0.40.0/README.md#rules--aliases
|
|
496
|
+
[markdownlint-rules-tags]: https://github.com/DavidAnson/markdownlint/blob/v0.40.0/README.md#tags
|
|
497
497
|
[markdownlint-cli]: https://github.com/igorshubovych/markdownlint-cli
|
|
498
498
|
[markdownlint-cli2]: https://github.com/DavidAnson/markdownlint-cli2
|
|
499
499
|
[markdownlint-cli2-action]: https://github.com/marketplace/actions/markdownlint-cli2-action
|
|
@@ -505,10 +505,10 @@ See [CHANGELOG.md][changelog].
|
|
|
505
505
|
[markdownlint-cli2-mjs]: test/markdownlint-cli2-mjs/.markdownlint-cli2.mjs
|
|
506
506
|
[markdownlint-cli2-yaml]: test/markdownlint-cli2-yaml-example/.markdownlint-cli2.yaml
|
|
507
507
|
[markdownlint-cjs]: test/markdownlint-cjs/.markdownlint.cjs
|
|
508
|
-
[markdownlint-jsonc]: https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
508
|
+
[markdownlint-jsonc]: https://github.com/DavidAnson/markdownlint/blob/v0.40.0/schema/.markdownlint.jsonc
|
|
509
509
|
[markdownlint-mjs]: test/markdownlint-mjs/.markdownlint.mjs
|
|
510
510
|
[markdownlint-rule]: https://www.npmjs.com/search?q=keywords:markdownlint-rule
|
|
511
|
-
[markdownlint-yaml]: https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
511
|
+
[markdownlint-yaml]: https://github.com/DavidAnson/markdownlint/blob/v0.40.0/schema/.markdownlint.yaml
|
|
512
512
|
[nodejs]: https://nodejs.org/
|
|
513
513
|
[nodejs-docker]: https://github.com/nodejs/docker-node
|
|
514
514
|
[nodejs-docker-non-root]: https://github.com/nodejs/docker-node/blob/main/docs/BestPractices.md#non-root-user
|
package/markdownlint-cli2.mjs
CHANGED
|
@@ -21,7 +21,7 @@ import yamlParse from "./parsers/yaml-parse.mjs";
|
|
|
21
21
|
|
|
22
22
|
// Variables
|
|
23
23
|
const packageName = "markdownlint-cli2";
|
|
24
|
-
const packageVersion = "0.
|
|
24
|
+
const packageVersion = "0.20.0";
|
|
25
25
|
const libraryName = "markdownlint";
|
|
26
26
|
const libraryVersion = getVersion();
|
|
27
27
|
const bannerMessage = `${packageName} v${packageVersion} (${libraryName} v${libraryVersion})`;
|
|
@@ -1067,7 +1067,11 @@ export const main = async (/** @type {Parameters} */ params) => {
|
|
|
1067
1067
|
logMessage(`Summary: ${results.length} error(s)`);
|
|
1068
1068
|
}
|
|
1069
1069
|
if (formattingContext.formatting) {
|
|
1070
|
-
|
|
1070
|
+
const { pipeline } = await import("node:stream/promises");
|
|
1071
|
+
await pipeline(
|
|
1072
|
+
String(formattingContext.formatted),
|
|
1073
|
+
process.stdout
|
|
1074
|
+
);
|
|
1071
1075
|
} else {
|
|
1072
1076
|
const outputFormatters =
|
|
1073
1077
|
(optionsOverride && optionsOverride.outputFormatters) ||
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markdownlint-cli2",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "A fast, flexible, configuration-based command-line interface for linting Markdown/CommonMark files with the `markdownlint` library",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "David Anson",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"lint-dockerfile": "docker run --rm -i hadolint/hadolint:latest-alpine < docker/Dockerfile",
|
|
36
36
|
"lint-watch": "git ls-files | entr npm run lint",
|
|
37
37
|
"playwright-install-bare": "npm run playwright-install-npm && playwright install",
|
|
38
|
-
"playwright-install-npm": "npm install --no-save playwright@1.
|
|
38
|
+
"playwright-install-npm": "npm install --no-save playwright@1.57.0",
|
|
39
39
|
"playwright-test": "playwright test --config ./webworker/playwright.config.mjs",
|
|
40
|
-
"playwright-test-docker": "docker run --rm --volume $PWD:/home/workdir --workdir /home/workdir --ipc=host mcr.microsoft.com/playwright:v1.
|
|
40
|
+
"playwright-test-docker": "docker run --rm --volume $PWD:/home/workdir --workdir /home/workdir --ipc=host mcr.microsoft.com/playwright:v1.57.0 npm run playwright-test",
|
|
41
41
|
"schema": "cpy ./node_modules/markdownlint/schema/markdownlint-config-schema.json ./schema --flat",
|
|
42
42
|
"test": "ava --timeout=1m test/append-to-array-test.mjs test/fs-mock-test.mjs test/fs-virtual-test.mjs test/markdownlint-cli2-test.mjs test/markdownlint-cli2-test-exec.mjs test/markdownlint-cli2-test-exports.mjs test/markdownlint-cli2-test-formatters.mjs test/markdownlint-cli2-test-fs.mjs test/markdownlint-cli2-test-main.mjs test/merge-options-test.mjs",
|
|
43
43
|
"test-cover": "c8 --100 npm test",
|
|
@@ -76,15 +76,15 @@
|
|
|
76
76
|
"globby": "15.0.0",
|
|
77
77
|
"js-yaml": "4.1.1",
|
|
78
78
|
"jsonc-parser": "3.3.1",
|
|
79
|
-
"markdownlint": "0.
|
|
79
|
+
"markdownlint": "0.40.0",
|
|
80
80
|
"markdownlint-cli2-formatter-default": "0.0.6",
|
|
81
81
|
"markdown-it": "14.1.0",
|
|
82
82
|
"micromatch": "4.0.8"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@eslint/js": "9.39.1",
|
|
86
|
-
"@playwright/test": "1.
|
|
87
|
-
"@stylistic/eslint-plugin": "5.
|
|
86
|
+
"@playwright/test": "1.57.0",
|
|
87
|
+
"@stylistic/eslint-plugin": "5.6.1",
|
|
88
88
|
"ajv": "8.17.1",
|
|
89
89
|
"ava": "6.4.1",
|
|
90
90
|
"c8": "10.1.3",
|
|
@@ -92,9 +92,10 @@
|
|
|
92
92
|
"cpy": "12.1.0",
|
|
93
93
|
"cpy-cli": "6.0.0",
|
|
94
94
|
"eslint": "9.39.1",
|
|
95
|
-
"eslint-plugin-jsdoc": "61.
|
|
95
|
+
"eslint-plugin-jsdoc": "61.4.1",
|
|
96
96
|
"eslint-plugin-n": "17.23.1",
|
|
97
97
|
"eslint-plugin-unicorn": "62.0.0",
|
|
98
|
+
"execa": "9.6.1",
|
|
98
99
|
"markdown-it-emoji": "3.0.0",
|
|
99
100
|
"markdown-it-for-inline": "2.0.1",
|
|
100
101
|
"markdownlint-cli2-formatter-codequality": "0.0.7",
|
|
@@ -105,7 +106,6 @@
|
|
|
105
106
|
"markdownlint-cli2-formatter-summarize": "0.0.8",
|
|
106
107
|
"markdownlint-cli2-formatter-template": "0.0.4",
|
|
107
108
|
"markdownlint-rule-extended-ascii": "0.2.1",
|
|
108
|
-
"nano-spawn": "2.0.0",
|
|
109
109
|
"npm-run-all": "4.1.5",
|
|
110
110
|
"terminal-link": "5.0.0"
|
|
111
111
|
},
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.
|
|
3
|
+
"$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.20.0/schema/markdownlint-cli2-config-schema.json",
|
|
4
4
|
"title": "markdownlint-cli2 configuration schema",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"$schema": {
|
|
8
8
|
"description": "JSON Schema URI (expected by some editors)",
|
|
9
9
|
"type": "string",
|
|
10
|
-
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.
|
|
10
|
+
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.20.0/schema/markdownlint-cli2-config-schema.json"
|
|
11
11
|
},
|
|
12
12
|
"config": {
|
|
13
|
-
"description": "markdownlint configuration schema : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
14
|
-
"$ref": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.
|
|
13
|
+
"description": "markdownlint configuration schema : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/schema/.markdownlint.jsonc",
|
|
14
|
+
"$ref": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.40.0/schema/markdownlint-config-schema.json",
|
|
15
15
|
"default": {}
|
|
16
16
|
},
|
|
17
17
|
"customRules": {
|
|
18
|
-
"description": "Module names or paths of custom rules to load and use when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
18
|
+
"description": "Module names or paths of custom rules to load and use when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
19
19
|
"type": "array",
|
|
20
20
|
"default": [],
|
|
21
21
|
"items": {
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"fix": {
|
|
28
|
-
"description": "Whether to enable fixing of linting errors reported by rules that emit fix information : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
28
|
+
"description": "Whether to enable fixing of linting errors reported by rules that emit fix information : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
29
29
|
"type": "boolean",
|
|
30
30
|
"default": false
|
|
31
31
|
},
|
|
32
32
|
"frontMatter": {
|
|
33
|
-
"description": "Regular expression used to match and ignore any front matter at the beginning of a document : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
33
|
+
"description": "Regular expression used to match and ignore any front matter at the beginning of a document : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
34
34
|
"type": "string",
|
|
35
35
|
"minLength": 1,
|
|
36
36
|
"default": ""
|
|
37
37
|
},
|
|
38
38
|
"gitignore": {
|
|
39
|
-
"description": "Whether to ignore files referenced by .gitignore (or glob expression) (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
39
|
+
"description": "Whether to ignore files referenced by .gitignore (or glob expression) (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
40
40
|
"type": [
|
|
41
41
|
"boolean",
|
|
42
42
|
"string"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"default": false
|
|
45
45
|
},
|
|
46
46
|
"globs": {
|
|
47
|
-
"description": "Glob expressions to include when linting (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
47
|
+
"description": "Glob expressions to include when linting (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
48
48
|
"type": "array",
|
|
49
49
|
"default": [],
|
|
50
50
|
"items": {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
56
|
"ignores": {
|
|
57
|
-
"description": "Glob expressions to ignore when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
57
|
+
"description": "Glob expressions to ignore when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
58
58
|
"type": "array",
|
|
59
59
|
"default": [],
|
|
60
60
|
"items": {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
"markdownItPlugins": {
|
|
67
|
-
"description": "markdown-it plugins to load and use when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
67
|
+
"description": "markdown-it plugins to load and use when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
68
68
|
"type": "array",
|
|
69
69
|
"default": [],
|
|
70
70
|
"items": {
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
86
|
"modulePaths": {
|
|
87
|
-
"description": "Additional paths to resolve module locations from : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
87
|
+
"description": "Additional paths to resolve module locations from : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
88
88
|
"type": "array",
|
|
89
89
|
"default": [],
|
|
90
90
|
"items": {
|
|
@@ -94,22 +94,22 @@
|
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
96
|
"noBanner": {
|
|
97
|
-
"description": "Whether to disable the display of the banner message and version numbers on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
97
|
+
"description": "Whether to disable the display of the banner message and version numbers on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
98
98
|
"type": "boolean",
|
|
99
99
|
"default": false
|
|
100
100
|
},
|
|
101
101
|
"noInlineConfig": {
|
|
102
|
-
"description": "Whether to disable support of HTML comments within Markdown content : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
102
|
+
"description": "Whether to disable support of HTML comments within Markdown content : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
103
103
|
"type": "boolean",
|
|
104
104
|
"default": false
|
|
105
105
|
},
|
|
106
106
|
"noProgress": {
|
|
107
|
-
"description": "Whether to disable the display of progress on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
107
|
+
"description": "Whether to disable the display of progress on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
108
108
|
"type": "boolean",
|
|
109
109
|
"default": false
|
|
110
110
|
},
|
|
111
111
|
"outputFormatters": {
|
|
112
|
-
"description": "Output formatters to load and use to customize markdownlint-cli2 output (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
112
|
+
"description": "Output formatters to load and use to customize markdownlint-cli2 output (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
113
113
|
"type": "array",
|
|
114
114
|
"default": [],
|
|
115
115
|
"items": {
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
}
|
|
130
130
|
},
|
|
131
131
|
"showFound": {
|
|
132
|
-
"description": "Whether to show the list of found files on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.
|
|
132
|
+
"description": "Whether to show the list of found files on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.20.0/README.md#markdownlint-cli2jsonc",
|
|
133
133
|
"type": "boolean",
|
|
134
134
|
"default": false
|
|
135
135
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.
|
|
3
|
+
"$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.40.0/schema/markdownlint-config-schema.json",
|
|
4
4
|
"title": "markdownlint configuration schema",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"$schema": {
|
|
8
8
|
"description": "JSON Schema URI (expected by some editors)",
|
|
9
9
|
"type": "string",
|
|
10
|
-
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.
|
|
10
|
+
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.40.0/schema/markdownlint-config-schema.json"
|
|
11
11
|
},
|
|
12
12
|
"default": {
|
|
13
13
|
"description": "Default state for all rules",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"default": null
|
|
34
34
|
},
|
|
35
35
|
"MD001": {
|
|
36
|
-
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
36
|
+
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md001.md",
|
|
37
37
|
"oneOf": [
|
|
38
38
|
{
|
|
39
39
|
"type": "boolean"
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"default": true
|
|
74
74
|
},
|
|
75
75
|
"heading-increment": {
|
|
76
|
-
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
76
|
+
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md001.md",
|
|
77
77
|
"oneOf": [
|
|
78
78
|
{
|
|
79
79
|
"type": "boolean"
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"default": true
|
|
114
114
|
},
|
|
115
115
|
"MD003": {
|
|
116
|
-
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
116
|
+
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md003.md",
|
|
117
117
|
"oneOf": [
|
|
118
118
|
{
|
|
119
119
|
"type": "boolean"
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
"default": true
|
|
162
162
|
},
|
|
163
163
|
"heading-style": {
|
|
164
|
-
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
164
|
+
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md003.md",
|
|
165
165
|
"oneOf": [
|
|
166
166
|
{
|
|
167
167
|
"type": "boolean"
|
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
"default": true
|
|
210
210
|
},
|
|
211
211
|
"MD004": {
|
|
212
|
-
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
212
|
+
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md004.md",
|
|
213
213
|
"oneOf": [
|
|
214
214
|
{
|
|
215
215
|
"type": "boolean"
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
"default": true
|
|
257
257
|
},
|
|
258
258
|
"ul-style": {
|
|
259
|
-
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
259
|
+
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md004.md",
|
|
260
260
|
"oneOf": [
|
|
261
261
|
{
|
|
262
262
|
"type": "boolean"
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
"default": true
|
|
304
304
|
},
|
|
305
305
|
"MD005": {
|
|
306
|
-
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
306
|
+
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md005.md",
|
|
307
307
|
"oneOf": [
|
|
308
308
|
{
|
|
309
309
|
"type": "boolean"
|
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
"default": true
|
|
339
339
|
},
|
|
340
340
|
"list-indent": {
|
|
341
|
-
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
341
|
+
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md005.md",
|
|
342
342
|
"oneOf": [
|
|
343
343
|
{
|
|
344
344
|
"type": "boolean"
|
|
@@ -373,7 +373,7 @@
|
|
|
373
373
|
"default": true
|
|
374
374
|
},
|
|
375
375
|
"MD007": {
|
|
376
|
-
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
376
|
+
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md007.md",
|
|
377
377
|
"oneOf": [
|
|
378
378
|
{
|
|
379
379
|
"type": "boolean"
|
|
@@ -425,7 +425,7 @@
|
|
|
425
425
|
"default": true
|
|
426
426
|
},
|
|
427
427
|
"ul-indent": {
|
|
428
|
-
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
428
|
+
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md007.md",
|
|
429
429
|
"oneOf": [
|
|
430
430
|
{
|
|
431
431
|
"type": "boolean"
|
|
@@ -477,7 +477,7 @@
|
|
|
477
477
|
"default": true
|
|
478
478
|
},
|
|
479
479
|
"MD009": {
|
|
480
|
-
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
480
|
+
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md009.md",
|
|
481
481
|
"oneOf": [
|
|
482
482
|
{
|
|
483
483
|
"type": "boolean"
|
|
@@ -533,7 +533,7 @@
|
|
|
533
533
|
"default": true
|
|
534
534
|
},
|
|
535
535
|
"no-trailing-spaces": {
|
|
536
|
-
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
536
|
+
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md009.md",
|
|
537
537
|
"oneOf": [
|
|
538
538
|
{
|
|
539
539
|
"type": "boolean"
|
|
@@ -589,7 +589,7 @@
|
|
|
589
589
|
"default": true
|
|
590
590
|
},
|
|
591
591
|
"MD010": {
|
|
592
|
-
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
592
|
+
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md010.md",
|
|
593
593
|
"oneOf": [
|
|
594
594
|
{
|
|
595
595
|
"type": "boolean"
|
|
@@ -643,7 +643,7 @@
|
|
|
643
643
|
"default": true
|
|
644
644
|
},
|
|
645
645
|
"no-hard-tabs": {
|
|
646
|
-
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
646
|
+
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md010.md",
|
|
647
647
|
"oneOf": [
|
|
648
648
|
{
|
|
649
649
|
"type": "boolean"
|
|
@@ -697,7 +697,7 @@
|
|
|
697
697
|
"default": true
|
|
698
698
|
},
|
|
699
699
|
"MD011": {
|
|
700
|
-
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
700
|
+
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md011.md",
|
|
701
701
|
"oneOf": [
|
|
702
702
|
{
|
|
703
703
|
"type": "boolean"
|
|
@@ -732,7 +732,7 @@
|
|
|
732
732
|
"default": true
|
|
733
733
|
},
|
|
734
734
|
"no-reversed-links": {
|
|
735
|
-
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
735
|
+
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md011.md",
|
|
736
736
|
"oneOf": [
|
|
737
737
|
{
|
|
738
738
|
"type": "boolean"
|
|
@@ -767,7 +767,7 @@
|
|
|
767
767
|
"default": true
|
|
768
768
|
},
|
|
769
769
|
"MD012": {
|
|
770
|
-
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
770
|
+
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md012.md",
|
|
771
771
|
"oneOf": [
|
|
772
772
|
{
|
|
773
773
|
"type": "boolean"
|
|
@@ -808,7 +808,7 @@
|
|
|
808
808
|
"default": true
|
|
809
809
|
},
|
|
810
810
|
"no-multiple-blanks": {
|
|
811
|
-
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
811
|
+
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md012.md",
|
|
812
812
|
"oneOf": [
|
|
813
813
|
{
|
|
814
814
|
"type": "boolean"
|
|
@@ -849,7 +849,7 @@
|
|
|
849
849
|
"default": true
|
|
850
850
|
},
|
|
851
851
|
"MD013": {
|
|
852
|
-
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
852
|
+
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md013.md",
|
|
853
853
|
"oneOf": [
|
|
854
854
|
{
|
|
855
855
|
"type": "boolean"
|
|
@@ -927,7 +927,7 @@
|
|
|
927
927
|
"default": true
|
|
928
928
|
},
|
|
929
929
|
"line-length": {
|
|
930
|
-
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
930
|
+
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md013.md",
|
|
931
931
|
"oneOf": [
|
|
932
932
|
{
|
|
933
933
|
"type": "boolean"
|
|
@@ -1005,7 +1005,7 @@
|
|
|
1005
1005
|
"default": true
|
|
1006
1006
|
},
|
|
1007
1007
|
"MD014": {
|
|
1008
|
-
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1008
|
+
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md014.md",
|
|
1009
1009
|
"oneOf": [
|
|
1010
1010
|
{
|
|
1011
1011
|
"type": "boolean"
|
|
@@ -1040,7 +1040,7 @@
|
|
|
1040
1040
|
"default": true
|
|
1041
1041
|
},
|
|
1042
1042
|
"commands-show-output": {
|
|
1043
|
-
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1043
|
+
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md014.md",
|
|
1044
1044
|
"oneOf": [
|
|
1045
1045
|
{
|
|
1046
1046
|
"type": "boolean"
|
|
@@ -1075,7 +1075,7 @@
|
|
|
1075
1075
|
"default": true
|
|
1076
1076
|
},
|
|
1077
1077
|
"MD018": {
|
|
1078
|
-
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1078
|
+
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md018.md",
|
|
1079
1079
|
"oneOf": [
|
|
1080
1080
|
{
|
|
1081
1081
|
"type": "boolean"
|
|
@@ -1110,7 +1110,7 @@
|
|
|
1110
1110
|
"default": true
|
|
1111
1111
|
},
|
|
1112
1112
|
"no-missing-space-atx": {
|
|
1113
|
-
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1113
|
+
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md018.md",
|
|
1114
1114
|
"oneOf": [
|
|
1115
1115
|
{
|
|
1116
1116
|
"type": "boolean"
|
|
@@ -1145,7 +1145,7 @@
|
|
|
1145
1145
|
"default": true
|
|
1146
1146
|
},
|
|
1147
1147
|
"MD019": {
|
|
1148
|
-
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1148
|
+
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md019.md",
|
|
1149
1149
|
"oneOf": [
|
|
1150
1150
|
{
|
|
1151
1151
|
"type": "boolean"
|
|
@@ -1180,7 +1180,7 @@
|
|
|
1180
1180
|
"default": true
|
|
1181
1181
|
},
|
|
1182
1182
|
"no-multiple-space-atx": {
|
|
1183
|
-
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1183
|
+
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md019.md",
|
|
1184
1184
|
"oneOf": [
|
|
1185
1185
|
{
|
|
1186
1186
|
"type": "boolean"
|
|
@@ -1215,7 +1215,7 @@
|
|
|
1215
1215
|
"default": true
|
|
1216
1216
|
},
|
|
1217
1217
|
"MD020": {
|
|
1218
|
-
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1218
|
+
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md020.md",
|
|
1219
1219
|
"oneOf": [
|
|
1220
1220
|
{
|
|
1221
1221
|
"type": "boolean"
|
|
@@ -1250,7 +1250,7 @@
|
|
|
1250
1250
|
"default": true
|
|
1251
1251
|
},
|
|
1252
1252
|
"no-missing-space-closed-atx": {
|
|
1253
|
-
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1253
|
+
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md020.md",
|
|
1254
1254
|
"oneOf": [
|
|
1255
1255
|
{
|
|
1256
1256
|
"type": "boolean"
|
|
@@ -1285,7 +1285,7 @@
|
|
|
1285
1285
|
"default": true
|
|
1286
1286
|
},
|
|
1287
1287
|
"MD021": {
|
|
1288
|
-
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1288
|
+
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md021.md",
|
|
1289
1289
|
"oneOf": [
|
|
1290
1290
|
{
|
|
1291
1291
|
"type": "boolean"
|
|
@@ -1320,7 +1320,7 @@
|
|
|
1320
1320
|
"default": true
|
|
1321
1321
|
},
|
|
1322
1322
|
"no-multiple-space-closed-atx": {
|
|
1323
|
-
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1323
|
+
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md021.md",
|
|
1324
1324
|
"oneOf": [
|
|
1325
1325
|
{
|
|
1326
1326
|
"type": "boolean"
|
|
@@ -1355,7 +1355,7 @@
|
|
|
1355
1355
|
"default": true
|
|
1356
1356
|
},
|
|
1357
1357
|
"MD022": {
|
|
1358
|
-
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1358
|
+
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md022.md",
|
|
1359
1359
|
"oneOf": [
|
|
1360
1360
|
{
|
|
1361
1361
|
"type": "boolean"
|
|
@@ -1414,7 +1414,7 @@
|
|
|
1414
1414
|
"default": true
|
|
1415
1415
|
},
|
|
1416
1416
|
"blanks-around-headings": {
|
|
1417
|
-
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1417
|
+
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md022.md",
|
|
1418
1418
|
"oneOf": [
|
|
1419
1419
|
{
|
|
1420
1420
|
"type": "boolean"
|
|
@@ -1473,7 +1473,7 @@
|
|
|
1473
1473
|
"default": true
|
|
1474
1474
|
},
|
|
1475
1475
|
"MD023": {
|
|
1476
|
-
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1476
|
+
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md023.md",
|
|
1477
1477
|
"oneOf": [
|
|
1478
1478
|
{
|
|
1479
1479
|
"type": "boolean"
|
|
@@ -1508,7 +1508,7 @@
|
|
|
1508
1508
|
"default": true
|
|
1509
1509
|
},
|
|
1510
1510
|
"heading-start-left": {
|
|
1511
|
-
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1511
|
+
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md023.md",
|
|
1512
1512
|
"oneOf": [
|
|
1513
1513
|
{
|
|
1514
1514
|
"type": "boolean"
|
|
@@ -1543,7 +1543,7 @@
|
|
|
1543
1543
|
"default": true
|
|
1544
1544
|
},
|
|
1545
1545
|
"MD024": {
|
|
1546
|
-
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1546
|
+
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md024.md",
|
|
1547
1547
|
"oneOf": [
|
|
1548
1548
|
{
|
|
1549
1549
|
"type": "boolean"
|
|
@@ -1583,7 +1583,7 @@
|
|
|
1583
1583
|
"default": true
|
|
1584
1584
|
},
|
|
1585
1585
|
"no-duplicate-heading": {
|
|
1586
|
-
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1586
|
+
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md024.md",
|
|
1587
1587
|
"oneOf": [
|
|
1588
1588
|
{
|
|
1589
1589
|
"type": "boolean"
|
|
@@ -1623,7 +1623,7 @@
|
|
|
1623
1623
|
"default": true
|
|
1624
1624
|
},
|
|
1625
1625
|
"MD025": {
|
|
1626
|
-
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1626
|
+
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md025.md",
|
|
1627
1627
|
"oneOf": [
|
|
1628
1628
|
{
|
|
1629
1629
|
"type": "boolean"
|
|
@@ -1670,7 +1670,7 @@
|
|
|
1670
1670
|
"default": true
|
|
1671
1671
|
},
|
|
1672
1672
|
"single-title": {
|
|
1673
|
-
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1673
|
+
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md025.md",
|
|
1674
1674
|
"oneOf": [
|
|
1675
1675
|
{
|
|
1676
1676
|
"type": "boolean"
|
|
@@ -1717,7 +1717,7 @@
|
|
|
1717
1717
|
"default": true
|
|
1718
1718
|
},
|
|
1719
1719
|
"single-h1": {
|
|
1720
|
-
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1720
|
+
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md025.md",
|
|
1721
1721
|
"oneOf": [
|
|
1722
1722
|
{
|
|
1723
1723
|
"type": "boolean"
|
|
@@ -1764,7 +1764,7 @@
|
|
|
1764
1764
|
"default": true
|
|
1765
1765
|
},
|
|
1766
1766
|
"MD026": {
|
|
1767
|
-
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1767
|
+
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md026.md",
|
|
1768
1768
|
"oneOf": [
|
|
1769
1769
|
{
|
|
1770
1770
|
"type": "boolean"
|
|
@@ -1804,7 +1804,7 @@
|
|
|
1804
1804
|
"default": true
|
|
1805
1805
|
},
|
|
1806
1806
|
"no-trailing-punctuation": {
|
|
1807
|
-
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1807
|
+
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md026.md",
|
|
1808
1808
|
"oneOf": [
|
|
1809
1809
|
{
|
|
1810
1810
|
"type": "boolean"
|
|
@@ -1844,7 +1844,7 @@
|
|
|
1844
1844
|
"default": true
|
|
1845
1845
|
},
|
|
1846
1846
|
"MD027": {
|
|
1847
|
-
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1847
|
+
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md027.md",
|
|
1848
1848
|
"oneOf": [
|
|
1849
1849
|
{
|
|
1850
1850
|
"type": "boolean"
|
|
@@ -1884,7 +1884,7 @@
|
|
|
1884
1884
|
"default": true
|
|
1885
1885
|
},
|
|
1886
1886
|
"no-multiple-space-blockquote": {
|
|
1887
|
-
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1887
|
+
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md027.md",
|
|
1888
1888
|
"oneOf": [
|
|
1889
1889
|
{
|
|
1890
1890
|
"type": "boolean"
|
|
@@ -1924,7 +1924,7 @@
|
|
|
1924
1924
|
"default": true
|
|
1925
1925
|
},
|
|
1926
1926
|
"MD028": {
|
|
1927
|
-
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1927
|
+
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md028.md",
|
|
1928
1928
|
"oneOf": [
|
|
1929
1929
|
{
|
|
1930
1930
|
"type": "boolean"
|
|
@@ -1959,7 +1959,7 @@
|
|
|
1959
1959
|
"default": true
|
|
1960
1960
|
},
|
|
1961
1961
|
"no-blanks-blockquote": {
|
|
1962
|
-
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1962
|
+
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md028.md",
|
|
1963
1963
|
"oneOf": [
|
|
1964
1964
|
{
|
|
1965
1965
|
"type": "boolean"
|
|
@@ -1994,7 +1994,7 @@
|
|
|
1994
1994
|
"default": true
|
|
1995
1995
|
},
|
|
1996
1996
|
"MD029": {
|
|
1997
|
-
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1997
|
+
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md029.md",
|
|
1998
1998
|
"oneOf": [
|
|
1999
1999
|
{
|
|
2000
2000
|
"type": "boolean"
|
|
@@ -2040,7 +2040,7 @@
|
|
|
2040
2040
|
"default": true
|
|
2041
2041
|
},
|
|
2042
2042
|
"ol-prefix": {
|
|
2043
|
-
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2043
|
+
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md029.md",
|
|
2044
2044
|
"oneOf": [
|
|
2045
2045
|
{
|
|
2046
2046
|
"type": "boolean"
|
|
@@ -2086,7 +2086,7 @@
|
|
|
2086
2086
|
"default": true
|
|
2087
2087
|
},
|
|
2088
2088
|
"MD030": {
|
|
2089
|
-
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2089
|
+
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md030.md",
|
|
2090
2090
|
"oneOf": [
|
|
2091
2091
|
{
|
|
2092
2092
|
"type": "boolean"
|
|
@@ -2145,7 +2145,7 @@
|
|
|
2145
2145
|
"default": true
|
|
2146
2146
|
},
|
|
2147
2147
|
"list-marker-space": {
|
|
2148
|
-
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2148
|
+
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md030.md",
|
|
2149
2149
|
"oneOf": [
|
|
2150
2150
|
{
|
|
2151
2151
|
"type": "boolean"
|
|
@@ -2204,7 +2204,7 @@
|
|
|
2204
2204
|
"default": true
|
|
2205
2205
|
},
|
|
2206
2206
|
"MD031": {
|
|
2207
|
-
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2207
|
+
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md031.md",
|
|
2208
2208
|
"oneOf": [
|
|
2209
2209
|
{
|
|
2210
2210
|
"type": "boolean"
|
|
@@ -2244,7 +2244,7 @@
|
|
|
2244
2244
|
"default": true
|
|
2245
2245
|
},
|
|
2246
2246
|
"blanks-around-fences": {
|
|
2247
|
-
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2247
|
+
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md031.md",
|
|
2248
2248
|
"oneOf": [
|
|
2249
2249
|
{
|
|
2250
2250
|
"type": "boolean"
|
|
@@ -2284,7 +2284,7 @@
|
|
|
2284
2284
|
"default": true
|
|
2285
2285
|
},
|
|
2286
2286
|
"MD032": {
|
|
2287
|
-
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2287
|
+
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md032.md",
|
|
2288
2288
|
"oneOf": [
|
|
2289
2289
|
{
|
|
2290
2290
|
"type": "boolean"
|
|
@@ -2319,7 +2319,7 @@
|
|
|
2319
2319
|
"default": true
|
|
2320
2320
|
},
|
|
2321
2321
|
"blanks-around-lists": {
|
|
2322
|
-
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2322
|
+
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md032.md",
|
|
2323
2323
|
"oneOf": [
|
|
2324
2324
|
{
|
|
2325
2325
|
"type": "boolean"
|
|
@@ -2354,7 +2354,7 @@
|
|
|
2354
2354
|
"default": true
|
|
2355
2355
|
},
|
|
2356
2356
|
"MD033": {
|
|
2357
|
-
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2357
|
+
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md033.md",
|
|
2358
2358
|
"oneOf": [
|
|
2359
2359
|
{
|
|
2360
2360
|
"type": "boolean"
|
|
@@ -2405,7 +2405,7 @@
|
|
|
2405
2405
|
"default": true
|
|
2406
2406
|
},
|
|
2407
2407
|
"no-inline-html": {
|
|
2408
|
-
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2408
|
+
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md033.md",
|
|
2409
2409
|
"oneOf": [
|
|
2410
2410
|
{
|
|
2411
2411
|
"type": "boolean"
|
|
@@ -2456,7 +2456,7 @@
|
|
|
2456
2456
|
"default": true
|
|
2457
2457
|
},
|
|
2458
2458
|
"MD034": {
|
|
2459
|
-
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2459
|
+
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md034.md",
|
|
2460
2460
|
"oneOf": [
|
|
2461
2461
|
{
|
|
2462
2462
|
"type": "boolean"
|
|
@@ -2491,7 +2491,7 @@
|
|
|
2491
2491
|
"default": true
|
|
2492
2492
|
},
|
|
2493
2493
|
"no-bare-urls": {
|
|
2494
|
-
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2494
|
+
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md034.md",
|
|
2495
2495
|
"oneOf": [
|
|
2496
2496
|
{
|
|
2497
2497
|
"type": "boolean"
|
|
@@ -2526,7 +2526,7 @@
|
|
|
2526
2526
|
"default": true
|
|
2527
2527
|
},
|
|
2528
2528
|
"MD035": {
|
|
2529
|
-
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2529
|
+
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md035.md",
|
|
2530
2530
|
"oneOf": [
|
|
2531
2531
|
{
|
|
2532
2532
|
"type": "boolean"
|
|
@@ -2566,7 +2566,7 @@
|
|
|
2566
2566
|
"default": true
|
|
2567
2567
|
},
|
|
2568
2568
|
"hr-style": {
|
|
2569
|
-
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2569
|
+
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md035.md",
|
|
2570
2570
|
"oneOf": [
|
|
2571
2571
|
{
|
|
2572
2572
|
"type": "boolean"
|
|
@@ -2606,7 +2606,7 @@
|
|
|
2606
2606
|
"default": true
|
|
2607
2607
|
},
|
|
2608
2608
|
"MD036": {
|
|
2609
|
-
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2609
|
+
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md036.md",
|
|
2610
2610
|
"oneOf": [
|
|
2611
2611
|
{
|
|
2612
2612
|
"type": "boolean"
|
|
@@ -2646,7 +2646,7 @@
|
|
|
2646
2646
|
"default": true
|
|
2647
2647
|
},
|
|
2648
2648
|
"no-emphasis-as-heading": {
|
|
2649
|
-
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2649
|
+
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md036.md",
|
|
2650
2650
|
"oneOf": [
|
|
2651
2651
|
{
|
|
2652
2652
|
"type": "boolean"
|
|
@@ -2686,7 +2686,7 @@
|
|
|
2686
2686
|
"default": true
|
|
2687
2687
|
},
|
|
2688
2688
|
"MD037": {
|
|
2689
|
-
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2689
|
+
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md037.md",
|
|
2690
2690
|
"oneOf": [
|
|
2691
2691
|
{
|
|
2692
2692
|
"type": "boolean"
|
|
@@ -2721,7 +2721,7 @@
|
|
|
2721
2721
|
"default": true
|
|
2722
2722
|
},
|
|
2723
2723
|
"no-space-in-emphasis": {
|
|
2724
|
-
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2724
|
+
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md037.md",
|
|
2725
2725
|
"oneOf": [
|
|
2726
2726
|
{
|
|
2727
2727
|
"type": "boolean"
|
|
@@ -2756,7 +2756,7 @@
|
|
|
2756
2756
|
"default": true
|
|
2757
2757
|
},
|
|
2758
2758
|
"MD038": {
|
|
2759
|
-
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2759
|
+
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md038.md",
|
|
2760
2760
|
"oneOf": [
|
|
2761
2761
|
{
|
|
2762
2762
|
"type": "boolean"
|
|
@@ -2791,7 +2791,7 @@
|
|
|
2791
2791
|
"default": true
|
|
2792
2792
|
},
|
|
2793
2793
|
"no-space-in-code": {
|
|
2794
|
-
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2794
|
+
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md038.md",
|
|
2795
2795
|
"oneOf": [
|
|
2796
2796
|
{
|
|
2797
2797
|
"type": "boolean"
|
|
@@ -2826,7 +2826,7 @@
|
|
|
2826
2826
|
"default": true
|
|
2827
2827
|
},
|
|
2828
2828
|
"MD039": {
|
|
2829
|
-
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2829
|
+
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md039.md",
|
|
2830
2830
|
"oneOf": [
|
|
2831
2831
|
{
|
|
2832
2832
|
"type": "boolean"
|
|
@@ -2861,7 +2861,7 @@
|
|
|
2861
2861
|
"default": true
|
|
2862
2862
|
},
|
|
2863
2863
|
"no-space-in-links": {
|
|
2864
|
-
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2864
|
+
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md039.md",
|
|
2865
2865
|
"oneOf": [
|
|
2866
2866
|
{
|
|
2867
2867
|
"type": "boolean"
|
|
@@ -2896,7 +2896,7 @@
|
|
|
2896
2896
|
"default": true
|
|
2897
2897
|
},
|
|
2898
2898
|
"MD040": {
|
|
2899
|
-
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2899
|
+
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md040.md",
|
|
2900
2900
|
"oneOf": [
|
|
2901
2901
|
{
|
|
2902
2902
|
"type": "boolean"
|
|
@@ -2944,7 +2944,7 @@
|
|
|
2944
2944
|
"default": true
|
|
2945
2945
|
},
|
|
2946
2946
|
"fenced-code-language": {
|
|
2947
|
-
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
2947
|
+
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md040.md",
|
|
2948
2948
|
"oneOf": [
|
|
2949
2949
|
{
|
|
2950
2950
|
"type": "boolean"
|
|
@@ -2992,7 +2992,7 @@
|
|
|
2992
2992
|
"default": true
|
|
2993
2993
|
},
|
|
2994
2994
|
"MD041": {
|
|
2995
|
-
"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.
|
|
2995
|
+
"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.40.0/doc/md041.md",
|
|
2996
2996
|
"oneOf": [
|
|
2997
2997
|
{
|
|
2998
2998
|
"type": "boolean"
|
|
@@ -3044,7 +3044,7 @@
|
|
|
3044
3044
|
"default": true
|
|
3045
3045
|
},
|
|
3046
3046
|
"first-line-heading": {
|
|
3047
|
-
"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.
|
|
3047
|
+
"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.40.0/doc/md041.md",
|
|
3048
3048
|
"oneOf": [
|
|
3049
3049
|
{
|
|
3050
3050
|
"type": "boolean"
|
|
@@ -3096,7 +3096,7 @@
|
|
|
3096
3096
|
"default": true
|
|
3097
3097
|
},
|
|
3098
3098
|
"first-line-h1": {
|
|
3099
|
-
"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.
|
|
3099
|
+
"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.40.0/doc/md041.md",
|
|
3100
3100
|
"oneOf": [
|
|
3101
3101
|
{
|
|
3102
3102
|
"type": "boolean"
|
|
@@ -3148,7 +3148,7 @@
|
|
|
3148
3148
|
"default": true
|
|
3149
3149
|
},
|
|
3150
3150
|
"MD042": {
|
|
3151
|
-
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3151
|
+
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md042.md",
|
|
3152
3152
|
"oneOf": [
|
|
3153
3153
|
{
|
|
3154
3154
|
"type": "boolean"
|
|
@@ -3183,7 +3183,7 @@
|
|
|
3183
3183
|
"default": true
|
|
3184
3184
|
},
|
|
3185
3185
|
"no-empty-links": {
|
|
3186
|
-
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3186
|
+
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md042.md",
|
|
3187
3187
|
"oneOf": [
|
|
3188
3188
|
{
|
|
3189
3189
|
"type": "boolean"
|
|
@@ -3218,7 +3218,7 @@
|
|
|
3218
3218
|
"default": true
|
|
3219
3219
|
},
|
|
3220
3220
|
"MD043": {
|
|
3221
|
-
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3221
|
+
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md043.md",
|
|
3222
3222
|
"oneOf": [
|
|
3223
3223
|
{
|
|
3224
3224
|
"type": "boolean"
|
|
@@ -3267,7 +3267,7 @@
|
|
|
3267
3267
|
"default": true
|
|
3268
3268
|
},
|
|
3269
3269
|
"required-headings": {
|
|
3270
|
-
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3270
|
+
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md043.md",
|
|
3271
3271
|
"oneOf": [
|
|
3272
3272
|
{
|
|
3273
3273
|
"type": "boolean"
|
|
@@ -3316,7 +3316,7 @@
|
|
|
3316
3316
|
"default": true
|
|
3317
3317
|
},
|
|
3318
3318
|
"MD044": {
|
|
3319
|
-
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3319
|
+
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md044.md",
|
|
3320
3320
|
"oneOf": [
|
|
3321
3321
|
{
|
|
3322
3322
|
"type": "boolean"
|
|
@@ -3369,7 +3369,7 @@
|
|
|
3369
3369
|
"default": true
|
|
3370
3370
|
},
|
|
3371
3371
|
"proper-names": {
|
|
3372
|
-
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3372
|
+
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md044.md",
|
|
3373
3373
|
"oneOf": [
|
|
3374
3374
|
{
|
|
3375
3375
|
"type": "boolean"
|
|
@@ -3422,7 +3422,7 @@
|
|
|
3422
3422
|
"default": true
|
|
3423
3423
|
},
|
|
3424
3424
|
"MD045": {
|
|
3425
|
-
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3425
|
+
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md045.md",
|
|
3426
3426
|
"oneOf": [
|
|
3427
3427
|
{
|
|
3428
3428
|
"type": "boolean"
|
|
@@ -3457,7 +3457,7 @@
|
|
|
3457
3457
|
"default": true
|
|
3458
3458
|
},
|
|
3459
3459
|
"no-alt-text": {
|
|
3460
|
-
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3460
|
+
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md045.md",
|
|
3461
3461
|
"oneOf": [
|
|
3462
3462
|
{
|
|
3463
3463
|
"type": "boolean"
|
|
@@ -3492,7 +3492,7 @@
|
|
|
3492
3492
|
"default": true
|
|
3493
3493
|
},
|
|
3494
3494
|
"MD046": {
|
|
3495
|
-
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3495
|
+
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md046.md",
|
|
3496
3496
|
"oneOf": [
|
|
3497
3497
|
{
|
|
3498
3498
|
"type": "boolean"
|
|
@@ -3537,7 +3537,7 @@
|
|
|
3537
3537
|
"default": true
|
|
3538
3538
|
},
|
|
3539
3539
|
"code-block-style": {
|
|
3540
|
-
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3540
|
+
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md046.md",
|
|
3541
3541
|
"oneOf": [
|
|
3542
3542
|
{
|
|
3543
3543
|
"type": "boolean"
|
|
@@ -3582,7 +3582,7 @@
|
|
|
3582
3582
|
"default": true
|
|
3583
3583
|
},
|
|
3584
3584
|
"MD047": {
|
|
3585
|
-
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3585
|
+
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md047.md",
|
|
3586
3586
|
"oneOf": [
|
|
3587
3587
|
{
|
|
3588
3588
|
"type": "boolean"
|
|
@@ -3617,7 +3617,7 @@
|
|
|
3617
3617
|
"default": true
|
|
3618
3618
|
},
|
|
3619
3619
|
"single-trailing-newline": {
|
|
3620
|
-
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3620
|
+
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md047.md",
|
|
3621
3621
|
"oneOf": [
|
|
3622
3622
|
{
|
|
3623
3623
|
"type": "boolean"
|
|
@@ -3652,7 +3652,7 @@
|
|
|
3652
3652
|
"default": true
|
|
3653
3653
|
},
|
|
3654
3654
|
"MD048": {
|
|
3655
|
-
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3655
|
+
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md048.md",
|
|
3656
3656
|
"oneOf": [
|
|
3657
3657
|
{
|
|
3658
3658
|
"type": "boolean"
|
|
@@ -3697,7 +3697,7 @@
|
|
|
3697
3697
|
"default": true
|
|
3698
3698
|
},
|
|
3699
3699
|
"code-fence-style": {
|
|
3700
|
-
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3700
|
+
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md048.md",
|
|
3701
3701
|
"oneOf": [
|
|
3702
3702
|
{
|
|
3703
3703
|
"type": "boolean"
|
|
@@ -3742,7 +3742,7 @@
|
|
|
3742
3742
|
"default": true
|
|
3743
3743
|
},
|
|
3744
3744
|
"MD049": {
|
|
3745
|
-
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3745
|
+
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md049.md",
|
|
3746
3746
|
"oneOf": [
|
|
3747
3747
|
{
|
|
3748
3748
|
"type": "boolean"
|
|
@@ -3787,7 +3787,7 @@
|
|
|
3787
3787
|
"default": true
|
|
3788
3788
|
},
|
|
3789
3789
|
"emphasis-style": {
|
|
3790
|
-
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3790
|
+
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md049.md",
|
|
3791
3791
|
"oneOf": [
|
|
3792
3792
|
{
|
|
3793
3793
|
"type": "boolean"
|
|
@@ -3832,7 +3832,7 @@
|
|
|
3832
3832
|
"default": true
|
|
3833
3833
|
},
|
|
3834
3834
|
"MD050": {
|
|
3835
|
-
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3835
|
+
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md050.md",
|
|
3836
3836
|
"oneOf": [
|
|
3837
3837
|
{
|
|
3838
3838
|
"type": "boolean"
|
|
@@ -3877,7 +3877,7 @@
|
|
|
3877
3877
|
"default": true
|
|
3878
3878
|
},
|
|
3879
3879
|
"strong-style": {
|
|
3880
|
-
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3880
|
+
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md050.md",
|
|
3881
3881
|
"oneOf": [
|
|
3882
3882
|
{
|
|
3883
3883
|
"type": "boolean"
|
|
@@ -3922,7 +3922,7 @@
|
|
|
3922
3922
|
"default": true
|
|
3923
3923
|
},
|
|
3924
3924
|
"MD051": {
|
|
3925
|
-
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3925
|
+
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md051.md",
|
|
3926
3926
|
"oneOf": [
|
|
3927
3927
|
{
|
|
3928
3928
|
"type": "boolean"
|
|
@@ -3967,7 +3967,7 @@
|
|
|
3967
3967
|
"default": true
|
|
3968
3968
|
},
|
|
3969
3969
|
"link-fragments": {
|
|
3970
|
-
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
3970
|
+
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md051.md",
|
|
3971
3971
|
"oneOf": [
|
|
3972
3972
|
{
|
|
3973
3973
|
"type": "boolean"
|
|
@@ -4012,7 +4012,7 @@
|
|
|
4012
4012
|
"default": true
|
|
4013
4013
|
},
|
|
4014
4014
|
"MD052": {
|
|
4015
|
-
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4015
|
+
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md052.md",
|
|
4016
4016
|
"oneOf": [
|
|
4017
4017
|
{
|
|
4018
4018
|
"type": "boolean"
|
|
@@ -4062,7 +4062,7 @@
|
|
|
4062
4062
|
"default": true
|
|
4063
4063
|
},
|
|
4064
4064
|
"reference-links-images": {
|
|
4065
|
-
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4065
|
+
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md052.md",
|
|
4066
4066
|
"oneOf": [
|
|
4067
4067
|
{
|
|
4068
4068
|
"type": "boolean"
|
|
@@ -4112,7 +4112,7 @@
|
|
|
4112
4112
|
"default": true
|
|
4113
4113
|
},
|
|
4114
4114
|
"MD053": {
|
|
4115
|
-
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4115
|
+
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md053.md",
|
|
4116
4116
|
"oneOf": [
|
|
4117
4117
|
{
|
|
4118
4118
|
"type": "boolean"
|
|
@@ -4157,7 +4157,7 @@
|
|
|
4157
4157
|
"default": true
|
|
4158
4158
|
},
|
|
4159
4159
|
"link-image-reference-definitions": {
|
|
4160
|
-
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4160
|
+
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md053.md",
|
|
4161
4161
|
"oneOf": [
|
|
4162
4162
|
{
|
|
4163
4163
|
"type": "boolean"
|
|
@@ -4202,7 +4202,7 @@
|
|
|
4202
4202
|
"default": true
|
|
4203
4203
|
},
|
|
4204
4204
|
"MD054": {
|
|
4205
|
-
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4205
|
+
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md054.md",
|
|
4206
4206
|
"oneOf": [
|
|
4207
4207
|
{
|
|
4208
4208
|
"type": "boolean"
|
|
@@ -4267,7 +4267,7 @@
|
|
|
4267
4267
|
"default": true
|
|
4268
4268
|
},
|
|
4269
4269
|
"link-image-style": {
|
|
4270
|
-
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4270
|
+
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md054.md",
|
|
4271
4271
|
"oneOf": [
|
|
4272
4272
|
{
|
|
4273
4273
|
"type": "boolean"
|
|
@@ -4332,7 +4332,7 @@
|
|
|
4332
4332
|
"default": true
|
|
4333
4333
|
},
|
|
4334
4334
|
"MD055": {
|
|
4335
|
-
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4335
|
+
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md055.md",
|
|
4336
4336
|
"oneOf": [
|
|
4337
4337
|
{
|
|
4338
4338
|
"type": "boolean"
|
|
@@ -4379,7 +4379,7 @@
|
|
|
4379
4379
|
"default": true
|
|
4380
4380
|
},
|
|
4381
4381
|
"table-pipe-style": {
|
|
4382
|
-
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4382
|
+
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md055.md",
|
|
4383
4383
|
"oneOf": [
|
|
4384
4384
|
{
|
|
4385
4385
|
"type": "boolean"
|
|
@@ -4426,7 +4426,7 @@
|
|
|
4426
4426
|
"default": true
|
|
4427
4427
|
},
|
|
4428
4428
|
"MD056": {
|
|
4429
|
-
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4429
|
+
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md056.md",
|
|
4430
4430
|
"oneOf": [
|
|
4431
4431
|
{
|
|
4432
4432
|
"type": "boolean"
|
|
@@ -4461,7 +4461,7 @@
|
|
|
4461
4461
|
"default": true
|
|
4462
4462
|
},
|
|
4463
4463
|
"table-column-count": {
|
|
4464
|
-
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4464
|
+
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md056.md",
|
|
4465
4465
|
"oneOf": [
|
|
4466
4466
|
{
|
|
4467
4467
|
"type": "boolean"
|
|
@@ -4496,7 +4496,7 @@
|
|
|
4496
4496
|
"default": true
|
|
4497
4497
|
},
|
|
4498
4498
|
"MD058": {
|
|
4499
|
-
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4499
|
+
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md058.md",
|
|
4500
4500
|
"oneOf": [
|
|
4501
4501
|
{
|
|
4502
4502
|
"type": "boolean"
|
|
@@ -4531,7 +4531,7 @@
|
|
|
4531
4531
|
"default": true
|
|
4532
4532
|
},
|
|
4533
4533
|
"blanks-around-tables": {
|
|
4534
|
-
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4534
|
+
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md058.md",
|
|
4535
4535
|
"oneOf": [
|
|
4536
4536
|
{
|
|
4537
4537
|
"type": "boolean"
|
|
@@ -4566,7 +4566,7 @@
|
|
|
4566
4566
|
"default": true
|
|
4567
4567
|
},
|
|
4568
4568
|
"MD059": {
|
|
4569
|
-
"description": "MD059/descriptive-link-text : Link text should be descriptive : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4569
|
+
"description": "MD059/descriptive-link-text : Link text should be descriptive : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md059.md",
|
|
4570
4570
|
"oneOf": [
|
|
4571
4571
|
{
|
|
4572
4572
|
"type": "boolean"
|
|
@@ -4614,7 +4614,7 @@
|
|
|
4614
4614
|
"default": true
|
|
4615
4615
|
},
|
|
4616
4616
|
"descriptive-link-text": {
|
|
4617
|
-
"description": "MD059/descriptive-link-text : Link text should be descriptive : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4617
|
+
"description": "MD059/descriptive-link-text : Link text should be descriptive : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md059.md",
|
|
4618
4618
|
"oneOf": [
|
|
4619
4619
|
{
|
|
4620
4620
|
"type": "boolean"
|
|
@@ -4662,7 +4662,7 @@
|
|
|
4662
4662
|
"default": true
|
|
4663
4663
|
},
|
|
4664
4664
|
"MD060": {
|
|
4665
|
-
"description": "MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4665
|
+
"description": "MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md060.md",
|
|
4666
4666
|
"oneOf": [
|
|
4667
4667
|
{
|
|
4668
4668
|
"type": "boolean"
|
|
@@ -4701,6 +4701,11 @@
|
|
|
4701
4701
|
"tight"
|
|
4702
4702
|
],
|
|
4703
4703
|
"default": "any"
|
|
4704
|
+
},
|
|
4705
|
+
"aligned_delimiter": {
|
|
4706
|
+
"description": "Aligned delimiter columns",
|
|
4707
|
+
"type": "boolean",
|
|
4708
|
+
"default": false
|
|
4704
4709
|
}
|
|
4705
4710
|
}
|
|
4706
4711
|
}
|
|
@@ -4708,7 +4713,7 @@
|
|
|
4708
4713
|
"default": true
|
|
4709
4714
|
},
|
|
4710
4715
|
"table-column-style": {
|
|
4711
|
-
"description": "MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
4716
|
+
"description": "MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md060.md",
|
|
4712
4717
|
"oneOf": [
|
|
4713
4718
|
{
|
|
4714
4719
|
"type": "boolean"
|
|
@@ -4747,6 +4752,11 @@
|
|
|
4747
4752
|
"tight"
|
|
4748
4753
|
],
|
|
4749
4754
|
"default": "any"
|
|
4755
|
+
},
|
|
4756
|
+
"aligned_delimiter": {
|
|
4757
|
+
"description": "Aligned delimiter columns",
|
|
4758
|
+
"type": "boolean",
|
|
4759
|
+
"default": false
|
|
4750
4760
|
}
|
|
4751
4761
|
}
|
|
4752
4762
|
}
|