markdownlint-cli2 0.13.0 → 0.14.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 +6 -0
- package/README.md +13 -5
- package/markdownlint-cli2.js +28 -13
- package/package.json +26 -24
- package/schema/markdownlint-cli2-config-schema.json +21 -18
- package/schema/markdownlint-config-schema.json +115 -105
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -103,6 +103,7 @@ Cross-platform compatibility:
|
|
|
103
103
|
- Shells that expand globs do not support negated patterns (!node_modules); quoting is required here
|
|
104
104
|
- Some UNIX shells parse exclamation (!) in double-quotes; hashtag (#) is recommended in these cases
|
|
105
105
|
- The path separator is forward slash (/) on all platforms; backslash (\) is automatically converted
|
|
106
|
+
- On any platform, passing the parameter "--" causes all remaining parameters to be treated literally
|
|
106
107
|
|
|
107
108
|
The most compatible syntax for cross-platform support:
|
|
108
109
|
$ markdownlint-cli2 "**/*.md" "#node_modules"
|
|
@@ -147,7 +148,7 @@ A container image [`davidanson/markdownlint-cli2`][docker-hub-markdownlint-cli2]
|
|
|
147
148
|
can also be used (e.g., as part of a CI pipeline):
|
|
148
149
|
|
|
149
150
|
```bash
|
|
150
|
-
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.
|
|
151
|
+
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.14.0 "**/*.md" "#node_modules"
|
|
151
152
|
```
|
|
152
153
|
|
|
153
154
|
Notes:
|
|
@@ -164,7 +165,7 @@ Notes:
|
|
|
164
165
|
- A custom working directory can be specified with Docker's `-w` flag:
|
|
165
166
|
|
|
166
167
|
```bash
|
|
167
|
-
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.
|
|
168
|
+
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.14.0 "**/*.md" "#node_modules"
|
|
168
169
|
```
|
|
169
170
|
|
|
170
171
|
For convenience, the container image
|
|
@@ -256,8 +257,15 @@ of the rules within.
|
|
|
256
257
|
- The `String` is passed as the `pattern` parameter to the
|
|
257
258
|
[`RegExp` constructor][regexp-constructor]
|
|
258
259
|
- For example: `(^---\s*$[^]*?^---\s*$)(\r\n|\r|\n|$)`
|
|
259
|
-
- `gitignore`: `Boolean` value to ignore files
|
|
260
|
-
linting
|
|
260
|
+
- `gitignore`: `Boolean` or `String` value to automatically ignore files
|
|
261
|
+
referenced by `.gitignore` (or similar) when linting
|
|
262
|
+
- When the value `true` is specified, all `.gitignore` files in the tree are
|
|
263
|
+
imported (default `git` behavior)
|
|
264
|
+
- When a `String` value is specified, that glob pattern is used to identify
|
|
265
|
+
the set of ignore files to import
|
|
266
|
+
- The value `**/.gitignore` corresponds to the `Boolean` value `true`
|
|
267
|
+
- The value `.gitignore` imports only the file in the root of the tree;
|
|
268
|
+
this is usually equivalent and can be much faster for large trees
|
|
261
269
|
- This top-level setting is valid **only** in the directory from which
|
|
262
270
|
`markdownlint-cli2` is run
|
|
263
271
|
- `globs`: `Array` of `String`s defining glob expressions to append to the
|
|
@@ -404,7 +412,7 @@ reference to the `repos` list in that project's `.pre-commit-config.yaml` like:
|
|
|
404
412
|
|
|
405
413
|
```yaml
|
|
406
414
|
- repo: https://github.com/DavidAnson/markdownlint-cli2
|
|
407
|
-
rev: v0.
|
|
415
|
+
rev: v0.14.0
|
|
408
416
|
hooks:
|
|
409
417
|
- id: markdownlint-cli2
|
|
410
418
|
```
|
package/markdownlint-cli2.js
CHANGED
|
@@ -26,7 +26,7 @@ const resolveAndRequire = require("./resolve-and-require");
|
|
|
26
26
|
|
|
27
27
|
// Variables
|
|
28
28
|
const packageName = "markdownlint-cli2";
|
|
29
|
-
const packageVersion = "0.
|
|
29
|
+
const packageVersion = "0.14.0";
|
|
30
30
|
const libraryName = "markdownlint";
|
|
31
31
|
const libraryVersion = markdownlintLibrary.getVersion();
|
|
32
32
|
const bannerMessage = `${packageName} v${packageVersion} (${libraryName} v${libraryVersion})`;
|
|
@@ -99,6 +99,7 @@ const importOrRequireResolve = async (dirOrDirs, id, noRequire) => {
|
|
|
99
99
|
errors.push(error);
|
|
100
100
|
}
|
|
101
101
|
try {
|
|
102
|
+
// eslint-disable-next-line n/no-unsupported-features/node-builtins
|
|
102
103
|
const isURL = !pathDefault.isAbsolute(expandId) && URL.canParse(expandId);
|
|
103
104
|
const urlString = (
|
|
104
105
|
isURL ? new URL(expandId) : pathToFileURL(pathDefault.resolve(dirs[0], expandId))
|
|
@@ -284,6 +285,7 @@ Cross-platform compatibility:
|
|
|
284
285
|
- Shells that expand globs do not support negated patterns (!node_modules); quoting is required here
|
|
285
286
|
- Some UNIX shells parse exclamation (!) in double-quotes; hashtag (#) is recommended in these cases
|
|
286
287
|
- The path separator is forward slash (/) on all platforms; backslash (\\) is automatically converted
|
|
288
|
+
- On any platform, passing the parameter "--" causes all remaining parameters to be treated literally
|
|
287
289
|
|
|
288
290
|
The most compatible syntax for cross-platform support:
|
|
289
291
|
$ markdownlint-cli2 "**/*.md" "#node_modules"`
|
|
@@ -317,7 +319,7 @@ const getAndProcessDirInfo = (
|
|
|
317
319
|
// Load markdownlint-cli2 object(s)
|
|
318
320
|
const markdownlintCli2Jsonc = pathPosix.join(dir, ".markdownlint-cli2.jsonc");
|
|
319
321
|
const markdownlintCli2Yaml = pathPosix.join(dir, ".markdownlint-cli2.yaml");
|
|
320
|
-
const markdownlintCli2Cjs =
|
|
322
|
+
const markdownlintCli2Cjs = pathPosix.join(dir, ".markdownlint-cli2.cjs");
|
|
321
323
|
const markdownlintCli2Mjs = pathPosix.join(dir, ".markdownlint-cli2.mjs");
|
|
322
324
|
const packageJson = pathPosix.join(dir, "package.json");
|
|
323
325
|
let file = "[UNKNOWN]";
|
|
@@ -365,8 +367,8 @@ const getAndProcessDirInfo = (
|
|
|
365
367
|
then((config) => {
|
|
366
368
|
options.config = config;
|
|
367
369
|
});
|
|
368
|
-
})
|
|
369
|
-
|
|
370
|
+
}).
|
|
371
|
+
catch((error) => {
|
|
370
372
|
throwForConfigurationFile(file, error);
|
|
371
373
|
})
|
|
372
374
|
);
|
|
@@ -477,6 +479,7 @@ const enumerateFiles = async (
|
|
|
477
479
|
globPatterns,
|
|
478
480
|
dirToDirInfo,
|
|
479
481
|
gitignore,
|
|
482
|
+
ignoreFiles,
|
|
480
483
|
noRequire
|
|
481
484
|
) => {
|
|
482
485
|
const tasks = [];
|
|
@@ -487,6 +490,7 @@ const enumerateFiles = async (
|
|
|
487
490
|
"dot": true,
|
|
488
491
|
"expandDirectories": false,
|
|
489
492
|
gitignore,
|
|
493
|
+
ignoreFiles,
|
|
490
494
|
"suppressErrors": true,
|
|
491
495
|
fs
|
|
492
496
|
};
|
|
@@ -612,6 +616,7 @@ const createDirInfos = async (
|
|
|
612
616
|
dirToDirInfo,
|
|
613
617
|
optionsOverride,
|
|
614
618
|
gitignore,
|
|
619
|
+
ignoreFiles,
|
|
615
620
|
noRequire
|
|
616
621
|
) => {
|
|
617
622
|
await enumerateFiles(
|
|
@@ -621,6 +626,7 @@ const createDirInfos = async (
|
|
|
621
626
|
globPatterns,
|
|
622
627
|
dirToDirInfo,
|
|
623
628
|
gitignore,
|
|
629
|
+
ignoreFiles,
|
|
624
630
|
noRequire
|
|
625
631
|
);
|
|
626
632
|
await enumerateParents(
|
|
@@ -916,26 +922,28 @@ const main = async (params) => {
|
|
|
916
922
|
let fixDefault = false;
|
|
917
923
|
// eslint-disable-next-line unicorn/no-useless-undefined
|
|
918
924
|
let configPath = undefined;
|
|
925
|
+
let sawDashDash = false;
|
|
919
926
|
let shouldShowHelp = false;
|
|
920
927
|
const argvFiltered = (argv || []).filter((arg) => {
|
|
921
|
-
if (
|
|
928
|
+
if (sawDashDash) {
|
|
929
|
+
return true;
|
|
930
|
+
} else if (configPath === null) {
|
|
922
931
|
configPath = arg;
|
|
923
|
-
return false;
|
|
924
932
|
// eslint-disable-next-line unicorn/prefer-switch
|
|
933
|
+
} else if (arg === "--") {
|
|
934
|
+
sawDashDash = true;
|
|
925
935
|
} else if (arg === "--config") {
|
|
926
936
|
configPath = null;
|
|
927
|
-
return false;
|
|
928
937
|
} else if (arg === "--fix") {
|
|
929
938
|
fixDefault = true;
|
|
930
|
-
return false;
|
|
931
939
|
} else if (arg === "--help") {
|
|
932
940
|
shouldShowHelp = true;
|
|
933
|
-
return false;
|
|
934
941
|
} else if (arg === "--no-globs") {
|
|
935
942
|
noGlobs = true;
|
|
936
|
-
|
|
943
|
+
} else {
|
|
944
|
+
return true;
|
|
937
945
|
}
|
|
938
|
-
return
|
|
946
|
+
return false;
|
|
939
947
|
});
|
|
940
948
|
if (shouldShowHelp) {
|
|
941
949
|
return showHelp(logMessage, true);
|
|
@@ -997,6 +1005,13 @@ const main = async (params) => {
|
|
|
997
1005
|
logMessage(`Finding: ${globPatterns.join(" ")}`);
|
|
998
1006
|
}
|
|
999
1007
|
// Create linting tasks
|
|
1008
|
+
const gitignore =
|
|
1009
|
+
// https://github.com/sindresorhus/globby/issues/265
|
|
1010
|
+
(!params.fs && (baseMarkdownlintOptions.gitignore === true));
|
|
1011
|
+
const ignoreFiles =
|
|
1012
|
+
(!params.fs && (typeof baseMarkdownlintOptions.gitignore === "string"))
|
|
1013
|
+
? baseMarkdownlintOptions.gitignore
|
|
1014
|
+
: undefined;
|
|
1000
1015
|
const dirInfos =
|
|
1001
1016
|
await createDirInfos(
|
|
1002
1017
|
fs,
|
|
@@ -1005,8 +1020,8 @@ const main = async (params) => {
|
|
|
1005
1020
|
globPatterns,
|
|
1006
1021
|
dirToDirInfo,
|
|
1007
1022
|
optionsOverride,
|
|
1008
|
-
|
|
1009
|
-
|
|
1023
|
+
gitignore,
|
|
1024
|
+
ignoreFiles,
|
|
1010
1025
|
noRequire
|
|
1011
1026
|
);
|
|
1012
1027
|
// Output linting status
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markdownlint-cli2",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.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",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"build-docker-image": "VERSION=$(node -e \"process.stdout.write(require('./package.json').version)\") && docker build -t davidanson/markdownlint-cli2:v$VERSION -f docker/Dockerfile --label org.opencontainers.image.version=v$VERSION .",
|
|
32
32
|
"build-docker-image-rules": "VERSION=$(node -e \"process.stdout.write(require('./package.json').version)\") && docker build -t davidanson/markdownlint-cli2-rules:v$VERSION -f docker/Dockerfile-rules --build-arg VERSION=v$VERSION --label org.opencontainers.image.version=v$VERSION .",
|
|
33
33
|
"ci": "npm-run-all --continue-on-error --parallel test-cover lint schema && git diff --exit-code",
|
|
34
|
-
"lint": "eslint --max-warnings 0
|
|
34
|
+
"lint": "eslint --max-warnings 0",
|
|
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
|
"schema": "cpy ./node_modules/markdownlint/schema/markdownlint-config-schema.json ./schema --flat",
|
|
38
|
-
"test": "ava --timeout=1m test/append-to-array-test.js test/fs-mock-test.js test/markdownlint-cli2-test.js test/markdownlint-cli2-test-exec.js test/markdownlint-cli2-test-exports.js test/markdownlint-cli2-test-fs.js test/markdownlint-cli2-test-main.js test/merge-options-test.js test/resolve-and-require-test.js",
|
|
38
|
+
"test": "ava --timeout=1m test/append-to-array-test.js test/fs-mock-test.js test/fs-virtual-test.js test/markdownlint-cli2-test.js test/markdownlint-cli2-test-exec.js test/markdownlint-cli2-test-exports.js test/markdownlint-cli2-test-fs.js test/markdownlint-cli2-test-main.js test/merge-options-test.js test/resolve-and-require-test.js",
|
|
39
39
|
"test-cover": "c8 --100 npm test",
|
|
40
40
|
"test-docker-hub-image": "VERSION=$(node -e \"process.stdout.write(require('./package.json').version)\") && docker image rm davidanson/markdownlint-cli2:v$VERSION davidanson/markdownlint-cli2:latest || true && docker run --rm -v $PWD:/workdir davidanson/markdownlint-cli2:v$VERSION \"*.md\" && docker run --rm -v $PWD:/workdir davidanson/markdownlint-cli2:latest \"*.md\"",
|
|
41
41
|
"test-docker-hub-image-rules": "VERSION=$(node -e \"process.stdout.write(require('./package.json').version)\") && docker image rm davidanson/markdownlint-cli2-rules:v$VERSION davidanson/markdownlint-cli2-rules:latest || true && docker run --rm -v $PWD:/workdir davidanson/markdownlint-cli2-rules:v$VERSION \"*.md\" && docker run --rm -v $PWD:/workdir davidanson/markdownlint-cli2-rules:latest \"*.md\"",
|
|
@@ -68,35 +68,37 @@
|
|
|
68
68
|
"schema/ValidatingConfiguration.md"
|
|
69
69
|
],
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"globby": "14.0.
|
|
71
|
+
"globby": "14.0.2",
|
|
72
72
|
"js-yaml": "4.1.0",
|
|
73
|
-
"jsonc-parser": "3.
|
|
74
|
-
"markdownlint": "0.
|
|
75
|
-
"markdownlint-cli2-formatter-default": "0.0.
|
|
76
|
-
"micromatch": "4.0.
|
|
73
|
+
"jsonc-parser": "3.3.1",
|
|
74
|
+
"markdownlint": "0.35.0",
|
|
75
|
+
"markdownlint-cli2-formatter-default": "0.0.5",
|
|
76
|
+
"micromatch": "4.0.8"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
+
"@eslint/js": "9.9.1",
|
|
79
80
|
"@iktakahiro/markdown-it-katex": "4.0.1",
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
81
|
+
"@stylistic/eslint-plugin": "2.7.2",
|
|
82
|
+
"ajv": "8.17.1",
|
|
83
|
+
"ava": "6.1.3",
|
|
84
|
+
"c8": "10.1.2",
|
|
85
|
+
"cpy": "11.1.0",
|
|
84
86
|
"cpy-cli": "5.0.0",
|
|
85
87
|
"del": "7.1.0",
|
|
86
|
-
"eslint": "
|
|
87
|
-
"eslint-plugin-jsdoc": "
|
|
88
|
-
"eslint-plugin-n": "
|
|
89
|
-
"eslint-plugin-unicorn": "
|
|
90
|
-
"execa": "
|
|
88
|
+
"eslint": "9.9.1",
|
|
89
|
+
"eslint-plugin-jsdoc": "50.2.2",
|
|
90
|
+
"eslint-plugin-n": "17.10.2",
|
|
91
|
+
"eslint-plugin-unicorn": "55.0.0",
|
|
92
|
+
"execa": "9.3.1",
|
|
91
93
|
"markdown-it-emoji": "3.0.0",
|
|
92
94
|
"markdown-it-for-inline": "2.0.1",
|
|
93
|
-
"markdownlint-cli2-formatter-codequality": "0.0.
|
|
94
|
-
"markdownlint-cli2-formatter-json": "0.0.
|
|
95
|
-
"markdownlint-cli2-formatter-junit": "0.0.
|
|
96
|
-
"markdownlint-cli2-formatter-pretty": "0.0.
|
|
97
|
-
"markdownlint-cli2-formatter-sarif": "0.0.
|
|
98
|
-
"markdownlint-cli2-formatter-summarize": "0.0.
|
|
99
|
-
"markdownlint-rule-
|
|
95
|
+
"markdownlint-cli2-formatter-codequality": "0.0.5",
|
|
96
|
+
"markdownlint-cli2-formatter-json": "0.0.8",
|
|
97
|
+
"markdownlint-cli2-formatter-junit": "0.0.12",
|
|
98
|
+
"markdownlint-cli2-formatter-pretty": "0.0.7",
|
|
99
|
+
"markdownlint-cli2-formatter-sarif": "0.0.2",
|
|
100
|
+
"markdownlint-cli2-formatter-summarize": "0.0.7",
|
|
101
|
+
"markdownlint-rule-extended-ascii": "0.1.0",
|
|
100
102
|
"npm-run-all": "4.1.5"
|
|
101
103
|
},
|
|
102
104
|
"keywords": [
|
|
@@ -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.14.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.14.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.35.0/schema/.markdownlint.jsonc",
|
|
14
|
+
"$ref": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.35.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.14.0/README.md#markdownlint-cli2jsonc",
|
|
19
19
|
"type": "array",
|
|
20
20
|
"default": [],
|
|
21
21
|
"items": {
|
|
@@ -25,23 +25,26 @@
|
|
|
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.14.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.14.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
|
|
40
|
-
"type":
|
|
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.14.0/README.md#markdownlint-cli2jsonc",
|
|
40
|
+
"type": [
|
|
41
|
+
"boolean",
|
|
42
|
+
"string"
|
|
43
|
+
],
|
|
41
44
|
"default": false
|
|
42
45
|
},
|
|
43
46
|
"globs": {
|
|
44
|
-
"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.14.0/README.md#markdownlint-cli2jsonc",
|
|
45
48
|
"type": "array",
|
|
46
49
|
"default": [],
|
|
47
50
|
"items": {
|
|
@@ -51,7 +54,7 @@
|
|
|
51
54
|
}
|
|
52
55
|
},
|
|
53
56
|
"ignores": {
|
|
54
|
-
"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.14.0/README.md#markdownlint-cli2jsonc",
|
|
55
58
|
"type": "array",
|
|
56
59
|
"default": [],
|
|
57
60
|
"items": {
|
|
@@ -61,7 +64,7 @@
|
|
|
61
64
|
}
|
|
62
65
|
},
|
|
63
66
|
"markdownItPlugins": {
|
|
64
|
-
"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.14.0/README.md#markdownlint-cli2jsonc",
|
|
65
68
|
"type": "array",
|
|
66
69
|
"default": [],
|
|
67
70
|
"items": {
|
|
@@ -81,7 +84,7 @@
|
|
|
81
84
|
}
|
|
82
85
|
},
|
|
83
86
|
"modulePaths": {
|
|
84
|
-
"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.14.0/README.md#markdownlint-cli2jsonc",
|
|
85
88
|
"type": "array",
|
|
86
89
|
"default": [],
|
|
87
90
|
"items": {
|
|
@@ -91,22 +94,22 @@
|
|
|
91
94
|
}
|
|
92
95
|
},
|
|
93
96
|
"noBanner": {
|
|
94
|
-
"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.14.0/README.md#markdownlint-cli2jsonc",
|
|
95
98
|
"type": "boolean",
|
|
96
99
|
"default": false
|
|
97
100
|
},
|
|
98
101
|
"noInlineConfig": {
|
|
99
|
-
"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.14.0/README.md#markdownlint-cli2jsonc",
|
|
100
103
|
"type": "boolean",
|
|
101
104
|
"default": false
|
|
102
105
|
},
|
|
103
106
|
"noProgress": {
|
|
104
|
-
"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.14.0/README.md#markdownlint-cli2jsonc",
|
|
105
108
|
"type": "boolean",
|
|
106
109
|
"default": false
|
|
107
110
|
},
|
|
108
111
|
"outputFormatters": {
|
|
109
|
-
"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.14.0/README.md#markdownlint-cli2jsonc",
|
|
110
113
|
"type": "array",
|
|
111
114
|
"default": [],
|
|
112
115
|
"items": {
|
|
@@ -126,7 +129,7 @@
|
|
|
126
129
|
}
|
|
127
130
|
},
|
|
128
131
|
"showFound": {
|
|
129
|
-
"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.14.0/README.md#markdownlint-cli2jsonc",
|
|
130
133
|
"type": "boolean",
|
|
131
134
|
"default": false
|
|
132
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.35.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.35.0/schema/markdownlint-config-schema.json"
|
|
11
11
|
},
|
|
12
12
|
"default": {
|
|
13
13
|
"description": "Default state for all rules",
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
"default": null
|
|
24
24
|
},
|
|
25
25
|
"MD001": {
|
|
26
|
-
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
26
|
+
"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",
|
|
27
27
|
"type": "boolean",
|
|
28
28
|
"default": true
|
|
29
29
|
},
|
|
30
30
|
"heading-increment": {
|
|
31
|
-
"description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
31
|
+
"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",
|
|
32
32
|
"type": "boolean",
|
|
33
33
|
"default": true
|
|
34
34
|
},
|
|
35
35
|
"MD003": {
|
|
36
|
-
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
36
|
+
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md003.md",
|
|
37
37
|
"type": [
|
|
38
38
|
"boolean",
|
|
39
39
|
"object"
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"additionalProperties": false
|
|
58
58
|
},
|
|
59
59
|
"heading-style": {
|
|
60
|
-
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
60
|
+
"description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md003.md",
|
|
61
61
|
"type": [
|
|
62
62
|
"boolean",
|
|
63
63
|
"object"
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"additionalProperties": false
|
|
82
82
|
},
|
|
83
83
|
"MD004": {
|
|
84
|
-
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
84
|
+
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md004.md",
|
|
85
85
|
"type": [
|
|
86
86
|
"boolean",
|
|
87
87
|
"object"
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"additionalProperties": false
|
|
105
105
|
},
|
|
106
106
|
"ul-style": {
|
|
107
|
-
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
107
|
+
"description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md004.md",
|
|
108
108
|
"type": [
|
|
109
109
|
"boolean",
|
|
110
110
|
"object"
|
|
@@ -127,17 +127,17 @@
|
|
|
127
127
|
"additionalProperties": false
|
|
128
128
|
},
|
|
129
129
|
"MD005": {
|
|
130
|
-
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
130
|
+
"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",
|
|
131
131
|
"type": "boolean",
|
|
132
132
|
"default": true
|
|
133
133
|
},
|
|
134
134
|
"list-indent": {
|
|
135
|
-
"description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
135
|
+
"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",
|
|
136
136
|
"type": "boolean",
|
|
137
137
|
"default": true
|
|
138
138
|
},
|
|
139
139
|
"MD007": {
|
|
140
|
-
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
140
|
+
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md007.md",
|
|
141
141
|
"type": [
|
|
142
142
|
"boolean",
|
|
143
143
|
"object"
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"additionalProperties": false
|
|
166
166
|
},
|
|
167
167
|
"ul-indent": {
|
|
168
|
-
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
168
|
+
"description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md007.md",
|
|
169
169
|
"type": [
|
|
170
170
|
"boolean",
|
|
171
171
|
"object"
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"additionalProperties": false
|
|
194
194
|
},
|
|
195
195
|
"MD009": {
|
|
196
|
-
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
196
|
+
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md009.md",
|
|
197
197
|
"type": [
|
|
198
198
|
"boolean",
|
|
199
199
|
"object"
|
|
@@ -220,7 +220,7 @@
|
|
|
220
220
|
"additionalProperties": false
|
|
221
221
|
},
|
|
222
222
|
"no-trailing-spaces": {
|
|
223
|
-
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
223
|
+
"description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md009.md",
|
|
224
224
|
"type": [
|
|
225
225
|
"boolean",
|
|
226
226
|
"object"
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
"additionalProperties": false
|
|
248
248
|
},
|
|
249
249
|
"MD010": {
|
|
250
|
-
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
250
|
+
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md010.md",
|
|
251
251
|
"type": [
|
|
252
252
|
"boolean",
|
|
253
253
|
"object"
|
|
@@ -277,7 +277,7 @@
|
|
|
277
277
|
"additionalProperties": false
|
|
278
278
|
},
|
|
279
279
|
"no-hard-tabs": {
|
|
280
|
-
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
280
|
+
"description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md010.md",
|
|
281
281
|
"type": [
|
|
282
282
|
"boolean",
|
|
283
283
|
"object"
|
|
@@ -307,17 +307,17 @@
|
|
|
307
307
|
"additionalProperties": false
|
|
308
308
|
},
|
|
309
309
|
"MD011": {
|
|
310
|
-
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
310
|
+
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md011.md",
|
|
311
311
|
"type": "boolean",
|
|
312
312
|
"default": true
|
|
313
313
|
},
|
|
314
314
|
"no-reversed-links": {
|
|
315
|
-
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
315
|
+
"description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md011.md",
|
|
316
316
|
"type": "boolean",
|
|
317
317
|
"default": true
|
|
318
318
|
},
|
|
319
319
|
"MD012": {
|
|
320
|
-
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
320
|
+
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md012.md",
|
|
321
321
|
"type": [
|
|
322
322
|
"boolean",
|
|
323
323
|
"object"
|
|
@@ -334,7 +334,7 @@
|
|
|
334
334
|
"additionalProperties": false
|
|
335
335
|
},
|
|
336
336
|
"no-multiple-blanks": {
|
|
337
|
-
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
337
|
+
"description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md012.md",
|
|
338
338
|
"type": [
|
|
339
339
|
"boolean",
|
|
340
340
|
"object"
|
|
@@ -351,7 +351,7 @@
|
|
|
351
351
|
"additionalProperties": false
|
|
352
352
|
},
|
|
353
353
|
"MD013": {
|
|
354
|
-
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
354
|
+
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md013.md",
|
|
355
355
|
"type": [
|
|
356
356
|
"boolean",
|
|
357
357
|
"object"
|
|
@@ -405,7 +405,7 @@
|
|
|
405
405
|
"additionalProperties": false
|
|
406
406
|
},
|
|
407
407
|
"line-length": {
|
|
408
|
-
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
408
|
+
"description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md013.md",
|
|
409
409
|
"type": [
|
|
410
410
|
"boolean",
|
|
411
411
|
"object"
|
|
@@ -459,57 +459,57 @@
|
|
|
459
459
|
"additionalProperties": false
|
|
460
460
|
},
|
|
461
461
|
"MD014": {
|
|
462
|
-
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
462
|
+
"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",
|
|
463
463
|
"type": "boolean",
|
|
464
464
|
"default": true
|
|
465
465
|
},
|
|
466
466
|
"commands-show-output": {
|
|
467
|
-
"description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
467
|
+
"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",
|
|
468
468
|
"type": "boolean",
|
|
469
469
|
"default": true
|
|
470
470
|
},
|
|
471
471
|
"MD018": {
|
|
472
|
-
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
472
|
+
"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",
|
|
473
473
|
"type": "boolean",
|
|
474
474
|
"default": true
|
|
475
475
|
},
|
|
476
476
|
"no-missing-space-atx": {
|
|
477
|
-
"description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
477
|
+
"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",
|
|
478
478
|
"type": "boolean",
|
|
479
479
|
"default": true
|
|
480
480
|
},
|
|
481
481
|
"MD019": {
|
|
482
|
-
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
482
|
+
"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",
|
|
483
483
|
"type": "boolean",
|
|
484
484
|
"default": true
|
|
485
485
|
},
|
|
486
486
|
"no-multiple-space-atx": {
|
|
487
|
-
"description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
487
|
+
"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",
|
|
488
488
|
"type": "boolean",
|
|
489
489
|
"default": true
|
|
490
490
|
},
|
|
491
491
|
"MD020": {
|
|
492
|
-
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
492
|
+
"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",
|
|
493
493
|
"type": "boolean",
|
|
494
494
|
"default": true
|
|
495
495
|
},
|
|
496
496
|
"no-missing-space-closed-atx": {
|
|
497
|
-
"description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
497
|
+
"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",
|
|
498
498
|
"type": "boolean",
|
|
499
499
|
"default": true
|
|
500
500
|
},
|
|
501
501
|
"MD021": {
|
|
502
|
-
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
502
|
+
"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",
|
|
503
503
|
"type": "boolean",
|
|
504
504
|
"default": true
|
|
505
505
|
},
|
|
506
506
|
"no-multiple-space-closed-atx": {
|
|
507
|
-
"description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
507
|
+
"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",
|
|
508
508
|
"type": "boolean",
|
|
509
509
|
"default": true
|
|
510
510
|
},
|
|
511
511
|
"MD022": {
|
|
512
|
-
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
512
|
+
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md022.md",
|
|
513
513
|
"type": [
|
|
514
514
|
"boolean",
|
|
515
515
|
"object"
|
|
@@ -544,7 +544,7 @@
|
|
|
544
544
|
"additionalProperties": false
|
|
545
545
|
},
|
|
546
546
|
"blanks-around-headings": {
|
|
547
|
-
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
547
|
+
"description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md022.md",
|
|
548
548
|
"type": [
|
|
549
549
|
"boolean",
|
|
550
550
|
"object"
|
|
@@ -579,17 +579,17 @@
|
|
|
579
579
|
"additionalProperties": false
|
|
580
580
|
},
|
|
581
581
|
"MD023": {
|
|
582
|
-
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
582
|
+
"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",
|
|
583
583
|
"type": "boolean",
|
|
584
584
|
"default": true
|
|
585
585
|
},
|
|
586
586
|
"heading-start-left": {
|
|
587
|
-
"description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
587
|
+
"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",
|
|
588
588
|
"type": "boolean",
|
|
589
589
|
"default": true
|
|
590
590
|
},
|
|
591
591
|
"MD024": {
|
|
592
|
-
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
592
|
+
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md024.md",
|
|
593
593
|
"type": [
|
|
594
594
|
"boolean",
|
|
595
595
|
"object"
|
|
@@ -605,7 +605,7 @@
|
|
|
605
605
|
"additionalProperties": false
|
|
606
606
|
},
|
|
607
607
|
"no-duplicate-heading": {
|
|
608
|
-
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
608
|
+
"description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md024.md",
|
|
609
609
|
"type": [
|
|
610
610
|
"boolean",
|
|
611
611
|
"object"
|
|
@@ -621,7 +621,7 @@
|
|
|
621
621
|
"additionalProperties": false
|
|
622
622
|
},
|
|
623
623
|
"MD025": {
|
|
624
|
-
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
624
|
+
"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",
|
|
625
625
|
"type": [
|
|
626
626
|
"boolean",
|
|
627
627
|
"object"
|
|
@@ -644,7 +644,7 @@
|
|
|
644
644
|
"additionalProperties": false
|
|
645
645
|
},
|
|
646
646
|
"single-title": {
|
|
647
|
-
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
647
|
+
"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",
|
|
648
648
|
"type": [
|
|
649
649
|
"boolean",
|
|
650
650
|
"object"
|
|
@@ -667,7 +667,7 @@
|
|
|
667
667
|
"additionalProperties": false
|
|
668
668
|
},
|
|
669
669
|
"single-h1": {
|
|
670
|
-
"description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
670
|
+
"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",
|
|
671
671
|
"type": [
|
|
672
672
|
"boolean",
|
|
673
673
|
"object"
|
|
@@ -690,7 +690,7 @@
|
|
|
690
690
|
"additionalProperties": false
|
|
691
691
|
},
|
|
692
692
|
"MD026": {
|
|
693
|
-
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
693
|
+
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md026.md",
|
|
694
694
|
"type": [
|
|
695
695
|
"boolean",
|
|
696
696
|
"object"
|
|
@@ -706,7 +706,7 @@
|
|
|
706
706
|
"additionalProperties": false
|
|
707
707
|
},
|
|
708
708
|
"no-trailing-punctuation": {
|
|
709
|
-
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
709
|
+
"description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md026.md",
|
|
710
710
|
"type": [
|
|
711
711
|
"boolean",
|
|
712
712
|
"object"
|
|
@@ -722,27 +722,27 @@
|
|
|
722
722
|
"additionalProperties": false
|
|
723
723
|
},
|
|
724
724
|
"MD027": {
|
|
725
|
-
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
725
|
+
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md027.md",
|
|
726
726
|
"type": "boolean",
|
|
727
727
|
"default": true
|
|
728
728
|
},
|
|
729
729
|
"no-multiple-space-blockquote": {
|
|
730
|
-
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
730
|
+
"description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md027.md",
|
|
731
731
|
"type": "boolean",
|
|
732
732
|
"default": true
|
|
733
733
|
},
|
|
734
734
|
"MD028": {
|
|
735
|
-
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
735
|
+
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md028.md",
|
|
736
736
|
"type": "boolean",
|
|
737
737
|
"default": true
|
|
738
738
|
},
|
|
739
739
|
"no-blanks-blockquote": {
|
|
740
|
-
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
740
|
+
"description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md028.md",
|
|
741
741
|
"type": "boolean",
|
|
742
742
|
"default": true
|
|
743
743
|
},
|
|
744
744
|
"MD029": {
|
|
745
|
-
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
745
|
+
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md029.md",
|
|
746
746
|
"type": [
|
|
747
747
|
"boolean",
|
|
748
748
|
"object"
|
|
@@ -764,7 +764,7 @@
|
|
|
764
764
|
"additionalProperties": false
|
|
765
765
|
},
|
|
766
766
|
"ol-prefix": {
|
|
767
|
-
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
767
|
+
"description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md029.md",
|
|
768
768
|
"type": [
|
|
769
769
|
"boolean",
|
|
770
770
|
"object"
|
|
@@ -786,7 +786,7 @@
|
|
|
786
786
|
"additionalProperties": false
|
|
787
787
|
},
|
|
788
788
|
"MD030": {
|
|
789
|
-
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
789
|
+
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md030.md",
|
|
790
790
|
"type": [
|
|
791
791
|
"boolean",
|
|
792
792
|
"object"
|
|
@@ -821,7 +821,7 @@
|
|
|
821
821
|
"additionalProperties": false
|
|
822
822
|
},
|
|
823
823
|
"list-marker-space": {
|
|
824
|
-
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
824
|
+
"description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md030.md",
|
|
825
825
|
"type": [
|
|
826
826
|
"boolean",
|
|
827
827
|
"object"
|
|
@@ -856,7 +856,7 @@
|
|
|
856
856
|
"additionalProperties": false
|
|
857
857
|
},
|
|
858
858
|
"MD031": {
|
|
859
|
-
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
859
|
+
"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",
|
|
860
860
|
"type": [
|
|
861
861
|
"boolean",
|
|
862
862
|
"object"
|
|
@@ -872,7 +872,7 @@
|
|
|
872
872
|
"additionalProperties": false
|
|
873
873
|
},
|
|
874
874
|
"blanks-around-fences": {
|
|
875
|
-
"description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
875
|
+
"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",
|
|
876
876
|
"type": [
|
|
877
877
|
"boolean",
|
|
878
878
|
"object"
|
|
@@ -888,17 +888,17 @@
|
|
|
888
888
|
"additionalProperties": false
|
|
889
889
|
},
|
|
890
890
|
"MD032": {
|
|
891
|
-
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
891
|
+
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md032.md",
|
|
892
892
|
"type": "boolean",
|
|
893
893
|
"default": true
|
|
894
894
|
},
|
|
895
895
|
"blanks-around-lists": {
|
|
896
|
-
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
896
|
+
"description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md032.md",
|
|
897
897
|
"type": "boolean",
|
|
898
898
|
"default": true
|
|
899
899
|
},
|
|
900
900
|
"MD033": {
|
|
901
|
-
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
901
|
+
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md",
|
|
902
902
|
"type": [
|
|
903
903
|
"boolean",
|
|
904
904
|
"object"
|
|
@@ -917,7 +917,7 @@
|
|
|
917
917
|
"additionalProperties": false
|
|
918
918
|
},
|
|
919
919
|
"no-inline-html": {
|
|
920
|
-
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
920
|
+
"description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md",
|
|
921
921
|
"type": [
|
|
922
922
|
"boolean",
|
|
923
923
|
"object"
|
|
@@ -936,17 +936,17 @@
|
|
|
936
936
|
"additionalProperties": false
|
|
937
937
|
},
|
|
938
938
|
"MD034": {
|
|
939
|
-
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
939
|
+
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md034.md",
|
|
940
940
|
"type": "boolean",
|
|
941
941
|
"default": true
|
|
942
942
|
},
|
|
943
943
|
"no-bare-urls": {
|
|
944
|
-
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
944
|
+
"description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md034.md",
|
|
945
945
|
"type": "boolean",
|
|
946
946
|
"default": true
|
|
947
947
|
},
|
|
948
948
|
"MD035": {
|
|
949
|
-
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
949
|
+
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md035.md",
|
|
950
950
|
"type": [
|
|
951
951
|
"boolean",
|
|
952
952
|
"object"
|
|
@@ -962,7 +962,7 @@
|
|
|
962
962
|
"additionalProperties": false
|
|
963
963
|
},
|
|
964
964
|
"hr-style": {
|
|
965
|
-
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
965
|
+
"description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md035.md",
|
|
966
966
|
"type": [
|
|
967
967
|
"boolean",
|
|
968
968
|
"object"
|
|
@@ -978,7 +978,7 @@
|
|
|
978
978
|
"additionalProperties": false
|
|
979
979
|
},
|
|
980
980
|
"MD036": {
|
|
981
|
-
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
981
|
+
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md036.md",
|
|
982
982
|
"type": [
|
|
983
983
|
"boolean",
|
|
984
984
|
"object"
|
|
@@ -994,7 +994,7 @@
|
|
|
994
994
|
"additionalProperties": false
|
|
995
995
|
},
|
|
996
996
|
"no-emphasis-as-heading": {
|
|
997
|
-
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
997
|
+
"description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md036.md",
|
|
998
998
|
"type": [
|
|
999
999
|
"boolean",
|
|
1000
1000
|
"object"
|
|
@@ -1010,37 +1010,37 @@
|
|
|
1010
1010
|
"additionalProperties": false
|
|
1011
1011
|
},
|
|
1012
1012
|
"MD037": {
|
|
1013
|
-
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1013
|
+
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md037.md",
|
|
1014
1014
|
"type": "boolean",
|
|
1015
1015
|
"default": true
|
|
1016
1016
|
},
|
|
1017
1017
|
"no-space-in-emphasis": {
|
|
1018
|
-
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1018
|
+
"description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md037.md",
|
|
1019
1019
|
"type": "boolean",
|
|
1020
1020
|
"default": true
|
|
1021
1021
|
},
|
|
1022
1022
|
"MD038": {
|
|
1023
|
-
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1023
|
+
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md038.md",
|
|
1024
1024
|
"type": "boolean",
|
|
1025
1025
|
"default": true
|
|
1026
1026
|
},
|
|
1027
1027
|
"no-space-in-code": {
|
|
1028
|
-
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1028
|
+
"description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md038.md",
|
|
1029
1029
|
"type": "boolean",
|
|
1030
1030
|
"default": true
|
|
1031
1031
|
},
|
|
1032
1032
|
"MD039": {
|
|
1033
|
-
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1033
|
+
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md039.md",
|
|
1034
1034
|
"type": "boolean",
|
|
1035
1035
|
"default": true
|
|
1036
1036
|
},
|
|
1037
1037
|
"no-space-in-links": {
|
|
1038
|
-
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1038
|
+
"description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md039.md",
|
|
1039
1039
|
"type": "boolean",
|
|
1040
1040
|
"default": true
|
|
1041
1041
|
},
|
|
1042
1042
|
"MD040": {
|
|
1043
|
-
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1043
|
+
"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",
|
|
1044
1044
|
"type": [
|
|
1045
1045
|
"boolean",
|
|
1046
1046
|
"object"
|
|
@@ -1064,7 +1064,7 @@
|
|
|
1064
1064
|
"additionalProperties": false
|
|
1065
1065
|
},
|
|
1066
1066
|
"fenced-code-language": {
|
|
1067
|
-
"description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1067
|
+
"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",
|
|
1068
1068
|
"type": [
|
|
1069
1069
|
"boolean",
|
|
1070
1070
|
"object"
|
|
@@ -1088,7 +1088,7 @@
|
|
|
1088
1088
|
"additionalProperties": false
|
|
1089
1089
|
},
|
|
1090
1090
|
"MD041": {
|
|
1091
|
-
"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.
|
|
1091
|
+
"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",
|
|
1092
1092
|
"type": [
|
|
1093
1093
|
"boolean",
|
|
1094
1094
|
"object"
|
|
@@ -1111,7 +1111,7 @@
|
|
|
1111
1111
|
"additionalProperties": false
|
|
1112
1112
|
},
|
|
1113
1113
|
"first-line-heading": {
|
|
1114
|
-
"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.
|
|
1114
|
+
"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",
|
|
1115
1115
|
"type": [
|
|
1116
1116
|
"boolean",
|
|
1117
1117
|
"object"
|
|
@@ -1134,7 +1134,7 @@
|
|
|
1134
1134
|
"additionalProperties": false
|
|
1135
1135
|
},
|
|
1136
1136
|
"first-line-h1": {
|
|
1137
|
-
"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.
|
|
1137
|
+
"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",
|
|
1138
1138
|
"type": [
|
|
1139
1139
|
"boolean",
|
|
1140
1140
|
"object"
|
|
@@ -1157,17 +1157,17 @@
|
|
|
1157
1157
|
"additionalProperties": false
|
|
1158
1158
|
},
|
|
1159
1159
|
"MD042": {
|
|
1160
|
-
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1160
|
+
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md042.md",
|
|
1161
1161
|
"type": "boolean",
|
|
1162
1162
|
"default": true
|
|
1163
1163
|
},
|
|
1164
1164
|
"no-empty-links": {
|
|
1165
|
-
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1165
|
+
"description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md042.md",
|
|
1166
1166
|
"type": "boolean",
|
|
1167
1167
|
"default": true
|
|
1168
1168
|
},
|
|
1169
1169
|
"MD043": {
|
|
1170
|
-
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1170
|
+
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md043.md",
|
|
1171
1171
|
"type": [
|
|
1172
1172
|
"boolean",
|
|
1173
1173
|
"object"
|
|
@@ -1192,7 +1192,7 @@
|
|
|
1192
1192
|
"additionalProperties": false
|
|
1193
1193
|
},
|
|
1194
1194
|
"required-headings": {
|
|
1195
|
-
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1195
|
+
"description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md043.md",
|
|
1196
1196
|
"type": [
|
|
1197
1197
|
"boolean",
|
|
1198
1198
|
"object"
|
|
@@ -1217,7 +1217,7 @@
|
|
|
1217
1217
|
"additionalProperties": false
|
|
1218
1218
|
},
|
|
1219
1219
|
"MD044": {
|
|
1220
|
-
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1220
|
+
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md044.md",
|
|
1221
1221
|
"type": [
|
|
1222
1222
|
"boolean",
|
|
1223
1223
|
"object"
|
|
@@ -1246,7 +1246,7 @@
|
|
|
1246
1246
|
"additionalProperties": false
|
|
1247
1247
|
},
|
|
1248
1248
|
"proper-names": {
|
|
1249
|
-
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1249
|
+
"description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md044.md",
|
|
1250
1250
|
"type": [
|
|
1251
1251
|
"boolean",
|
|
1252
1252
|
"object"
|
|
@@ -1275,17 +1275,17 @@
|
|
|
1275
1275
|
"additionalProperties": false
|
|
1276
1276
|
},
|
|
1277
1277
|
"MD045": {
|
|
1278
|
-
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1278
|
+
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md045.md",
|
|
1279
1279
|
"type": "boolean",
|
|
1280
1280
|
"default": true
|
|
1281
1281
|
},
|
|
1282
1282
|
"no-alt-text": {
|
|
1283
|
-
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1283
|
+
"description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md045.md",
|
|
1284
1284
|
"type": "boolean",
|
|
1285
1285
|
"default": true
|
|
1286
1286
|
},
|
|
1287
1287
|
"MD046": {
|
|
1288
|
-
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1288
|
+
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md046.md",
|
|
1289
1289
|
"type": [
|
|
1290
1290
|
"boolean",
|
|
1291
1291
|
"object"
|
|
@@ -1306,7 +1306,7 @@
|
|
|
1306
1306
|
"additionalProperties": false
|
|
1307
1307
|
},
|
|
1308
1308
|
"code-block-style": {
|
|
1309
|
-
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1309
|
+
"description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md046.md",
|
|
1310
1310
|
"type": [
|
|
1311
1311
|
"boolean",
|
|
1312
1312
|
"object"
|
|
@@ -1327,17 +1327,17 @@
|
|
|
1327
1327
|
"additionalProperties": false
|
|
1328
1328
|
},
|
|
1329
1329
|
"MD047": {
|
|
1330
|
-
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1330
|
+
"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",
|
|
1331
1331
|
"type": "boolean",
|
|
1332
1332
|
"default": true
|
|
1333
1333
|
},
|
|
1334
1334
|
"single-trailing-newline": {
|
|
1335
|
-
"description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1335
|
+
"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",
|
|
1336
1336
|
"type": "boolean",
|
|
1337
1337
|
"default": true
|
|
1338
1338
|
},
|
|
1339
1339
|
"MD048": {
|
|
1340
|
-
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1340
|
+
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md048.md",
|
|
1341
1341
|
"type": [
|
|
1342
1342
|
"boolean",
|
|
1343
1343
|
"object"
|
|
@@ -1358,7 +1358,7 @@
|
|
|
1358
1358
|
"additionalProperties": false
|
|
1359
1359
|
},
|
|
1360
1360
|
"code-fence-style": {
|
|
1361
|
-
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1361
|
+
"description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md048.md",
|
|
1362
1362
|
"type": [
|
|
1363
1363
|
"boolean",
|
|
1364
1364
|
"object"
|
|
@@ -1379,7 +1379,7 @@
|
|
|
1379
1379
|
"additionalProperties": false
|
|
1380
1380
|
},
|
|
1381
1381
|
"MD049": {
|
|
1382
|
-
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1382
|
+
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md049.md",
|
|
1383
1383
|
"type": [
|
|
1384
1384
|
"boolean",
|
|
1385
1385
|
"object"
|
|
@@ -1400,7 +1400,7 @@
|
|
|
1400
1400
|
"additionalProperties": false
|
|
1401
1401
|
},
|
|
1402
1402
|
"emphasis-style": {
|
|
1403
|
-
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1403
|
+
"description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md049.md",
|
|
1404
1404
|
"type": [
|
|
1405
1405
|
"boolean",
|
|
1406
1406
|
"object"
|
|
@@ -1421,7 +1421,7 @@
|
|
|
1421
1421
|
"additionalProperties": false
|
|
1422
1422
|
},
|
|
1423
1423
|
"MD050": {
|
|
1424
|
-
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1424
|
+
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md050.md",
|
|
1425
1425
|
"type": [
|
|
1426
1426
|
"boolean",
|
|
1427
1427
|
"object"
|
|
@@ -1442,7 +1442,7 @@
|
|
|
1442
1442
|
"additionalProperties": false
|
|
1443
1443
|
},
|
|
1444
1444
|
"strong-style": {
|
|
1445
|
-
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1445
|
+
"description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md050.md",
|
|
1446
1446
|
"type": [
|
|
1447
1447
|
"boolean",
|
|
1448
1448
|
"object"
|
|
@@ -1463,17 +1463,17 @@
|
|
|
1463
1463
|
"additionalProperties": false
|
|
1464
1464
|
},
|
|
1465
1465
|
"MD051": {
|
|
1466
|
-
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1466
|
+
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md051.md",
|
|
1467
1467
|
"type": "boolean",
|
|
1468
1468
|
"default": true
|
|
1469
1469
|
},
|
|
1470
1470
|
"link-fragments": {
|
|
1471
|
-
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1471
|
+
"description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md051.md",
|
|
1472
1472
|
"type": "boolean",
|
|
1473
1473
|
"default": true
|
|
1474
1474
|
},
|
|
1475
1475
|
"MD052": {
|
|
1476
|
-
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1476
|
+
"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",
|
|
1477
1477
|
"type": [
|
|
1478
1478
|
"boolean",
|
|
1479
1479
|
"object"
|
|
@@ -1489,7 +1489,7 @@
|
|
|
1489
1489
|
"additionalProperties": false
|
|
1490
1490
|
},
|
|
1491
1491
|
"reference-links-images": {
|
|
1492
|
-
"description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1492
|
+
"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",
|
|
1493
1493
|
"type": [
|
|
1494
1494
|
"boolean",
|
|
1495
1495
|
"object"
|
|
@@ -1505,7 +1505,7 @@
|
|
|
1505
1505
|
"additionalProperties": false
|
|
1506
1506
|
},
|
|
1507
1507
|
"MD053": {
|
|
1508
|
-
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1508
|
+
"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",
|
|
1509
1509
|
"type": [
|
|
1510
1510
|
"boolean",
|
|
1511
1511
|
"object"
|
|
@@ -1526,7 +1526,7 @@
|
|
|
1526
1526
|
"additionalProperties": false
|
|
1527
1527
|
},
|
|
1528
1528
|
"link-image-reference-definitions": {
|
|
1529
|
-
"description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1529
|
+
"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",
|
|
1530
1530
|
"type": [
|
|
1531
1531
|
"boolean",
|
|
1532
1532
|
"object"
|
|
@@ -1547,7 +1547,7 @@
|
|
|
1547
1547
|
"additionalProperties": false
|
|
1548
1548
|
},
|
|
1549
1549
|
"MD054": {
|
|
1550
|
-
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1550
|
+
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md054.md",
|
|
1551
1551
|
"type": [
|
|
1552
1552
|
"boolean",
|
|
1553
1553
|
"object"
|
|
@@ -1588,7 +1588,7 @@
|
|
|
1588
1588
|
"additionalProperties": false
|
|
1589
1589
|
},
|
|
1590
1590
|
"link-image-style": {
|
|
1591
|
-
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1591
|
+
"description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md054.md",
|
|
1592
1592
|
"type": [
|
|
1593
1593
|
"boolean",
|
|
1594
1594
|
"object"
|
|
@@ -1629,7 +1629,7 @@
|
|
|
1629
1629
|
"additionalProperties": false
|
|
1630
1630
|
},
|
|
1631
1631
|
"MD055": {
|
|
1632
|
-
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1632
|
+
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md055.md",
|
|
1633
1633
|
"type": [
|
|
1634
1634
|
"boolean",
|
|
1635
1635
|
"object"
|
|
@@ -1652,7 +1652,7 @@
|
|
|
1652
1652
|
"additionalProperties": false
|
|
1653
1653
|
},
|
|
1654
1654
|
"table-pipe-style": {
|
|
1655
|
-
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1655
|
+
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md055.md",
|
|
1656
1656
|
"type": [
|
|
1657
1657
|
"boolean",
|
|
1658
1658
|
"object"
|
|
@@ -1675,12 +1675,22 @@
|
|
|
1675
1675
|
"additionalProperties": false
|
|
1676
1676
|
},
|
|
1677
1677
|
"MD056": {
|
|
1678
|
-
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1678
|
+
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md056.md",
|
|
1679
1679
|
"type": "boolean",
|
|
1680
1680
|
"default": true
|
|
1681
1681
|
},
|
|
1682
1682
|
"table-column-count": {
|
|
1683
|
-
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.
|
|
1683
|
+
"description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md056.md",
|
|
1684
|
+
"type": "boolean",
|
|
1685
|
+
"default": true
|
|
1686
|
+
},
|
|
1687
|
+
"MD058": {
|
|
1688
|
+
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md058.md",
|
|
1689
|
+
"type": "boolean",
|
|
1690
|
+
"default": true
|
|
1691
|
+
},
|
|
1692
|
+
"blanks-around-tables": {
|
|
1693
|
+
"description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md058.md",
|
|
1684
1694
|
"type": "boolean",
|
|
1685
1695
|
"default": true
|
|
1686
1696
|
},
|
|
@@ -1800,7 +1810,7 @@
|
|
|
1800
1810
|
"default": true
|
|
1801
1811
|
},
|
|
1802
1812
|
"table": {
|
|
1803
|
-
"description": "table : MD055, MD056",
|
|
1813
|
+
"description": "table : MD055, MD056, MD058",
|
|
1804
1814
|
"type": "boolean",
|
|
1805
1815
|
"default": true
|
|
1806
1816
|
}
|