markdownlint-cli2 0.17.1 → 0.17.2

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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.17.2
4
+
5
+ - Update dependencies (including `markdownlint`)
6
+
3
7
  ## 0.17.1
4
8
 
5
9
  - Update dependencies (including `markdownlint`)
package/README.md CHANGED
@@ -149,7 +149,7 @@ A container image [`davidanson/markdownlint-cli2`][docker-hub-markdownlint-cli2]
149
149
  can also be used (e.g., as part of a CI pipeline):
150
150
 
151
151
  ```bash
152
- docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.17.1 "**/*.md" "#node_modules"
152
+ docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.17.2 "**/*.md" "#node_modules"
153
153
  ```
154
154
 
155
155
  Notes:
@@ -166,7 +166,7 @@ Notes:
166
166
  - A custom working directory can be specified with Docker's `-w` flag:
167
167
 
168
168
  ```bash
169
- docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.17.1 "**/*.md" "#node_modules"
169
+ docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.17.2 "**/*.md" "#node_modules"
170
170
  ```
171
171
 
172
172
  For convenience, the container image
@@ -413,7 +413,7 @@ reference to the `repos` list in that project's `.pre-commit-config.yaml` like:
413
413
 
414
414
  ```yaml
415
415
  - repo: https://github.com/DavidAnson/markdownlint-cli2
416
- rev: v0.17.1
416
+ rev: v0.17.2
417
417
  hooks:
418
418
  - id: markdownlint-cli2
419
419
  ```
@@ -2,27 +2,24 @@
2
2
 
3
3
  // Imports
4
4
  import fsNode from "node:fs";
5
- import { createRequire } from "node:module";
6
- const dynamicRequire = createRequire(import.meta.url);
7
5
  import os from "node:os";
8
6
  import pathDefault from "node:path";
9
7
  const pathPosix = pathDefault.posix;
10
8
  import { pathToFileURL } from "node:url";
11
9
  import { globby } from "globby";
12
10
  import micromatch from "micromatch";
13
- import { applyFixes, getVersion } from "markdownlint";
11
+ import { applyFixes, getVersion, resolveModule } from "markdownlint";
14
12
  import { lint, extendConfig, readConfig } from "markdownlint/promise";
15
13
  import { expandTildePath } from "markdownlint/helpers";
16
14
  import appendToArray from "./append-to-array.mjs";
17
15
  import mergeOptions from "./merge-options.mjs";
18
- import resolveModule from "./resolve-module.mjs";
19
16
  import parsers from "./parsers/parsers.mjs";
20
17
  import jsoncParse from "./parsers/jsonc-parse.mjs";
21
18
  import yamlParse from "./parsers/yaml-parse.mjs";
22
19
 
23
20
  // Variables
24
21
  const packageName = "markdownlint-cli2";
25
- const packageVersion = "0.17.1";
22
+ const packageVersion = "0.17.2";
26
23
  const libraryName = "markdownlint";
27
24
  const libraryVersion = getVersion();
28
25
  const bannerMessage = `${packageName} v${packageVersion} (${libraryName} v${libraryVersion})`;
@@ -78,7 +75,7 @@ const importModule = async (dirOrDirs, id, noImport) => {
78
75
  let moduleName = null;
79
76
  try {
80
77
  try {
81
- moduleName = pathToFileURL(resolveModule(dynamicRequire, expandId, dirs));
78
+ moduleName = pathToFileURL(resolveModule(expandId, dirs));
82
79
  } catch (error) {
83
80
  errors.push(error);
84
81
  moduleName =
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "markdownlint-cli2",
3
- "version": "0.17.1",
3
+ "version": "0.17.2",
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",
@@ -39,7 +39,7 @@
39
39
  "playwright-test": "playwright test --config ./webworker/playwright.config.mjs",
40
40
  "playwright-test-docker": "docker run --rm --volume $PWD:/home/workdir --workdir /home/workdir --ipc=host mcr.microsoft.com/playwright:v1.49.1 npm run playwright-test",
41
41
  "schema": "cpy ./node_modules/markdownlint/schema/markdownlint-config-schema.json ./schema --flat",
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-fs.mjs test/markdownlint-cli2-test-main.mjs test/merge-options-test.mjs test/resolve-module-test.mjs",
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-fs.mjs test/markdownlint-cli2-test-main.mjs test/merge-options-test.mjs",
43
43
  "test-cover": "c8 --100 npm test",
44
44
  "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\"",
45
45
  "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,7 +68,6 @@
68
68
  "parsers/jsonc-parse.mjs",
69
69
  "parsers/yaml-parse.mjs",
70
70
  "README.md",
71
- "resolve-module.mjs",
72
71
  "schema/markdownlint-cli2-config-schema.json",
73
72
  "schema/markdownlint-config-schema.json",
74
73
  "schema/ValidatingConfiguration.md"
@@ -77,23 +76,21 @@
77
76
  "globby": "14.0.2",
78
77
  "js-yaml": "4.1.0",
79
78
  "jsonc-parser": "3.3.1",
80
- "markdownlint": "0.37.3",
79
+ "markdownlint": "0.37.4",
81
80
  "markdownlint-cli2-formatter-default": "0.0.5",
82
81
  "micromatch": "4.0.8"
83
82
  },
84
83
  "devDependencies": {
85
- "@eslint/js": "9.17.0",
86
- "@iktakahiro/markdown-it-katex": "4.0.1",
84
+ "@eslint/js": "9.18.0",
87
85
  "@playwright/test": "1.49.1",
88
- "@stylistic/eslint-plugin": "2.12.1",
86
+ "@stylistic/eslint-plugin": "2.13.0",
89
87
  "ajv": "8.17.1",
90
88
  "ava": "6.2.0",
91
89
  "c8": "10.1.3",
92
90
  "chalk": "5.4.1",
93
91
  "cpy": "11.1.0",
94
92
  "cpy-cli": "5.0.0",
95
- "del": "8.0.0",
96
- "eslint": "9.17.0",
93
+ "eslint": "9.18.0",
97
94
  "eslint-plugin-jsdoc": "50.6.1",
98
95
  "eslint-plugin-n": "17.15.1",
99
96
  "eslint-plugin-unicorn": "56.0.1",
@@ -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.17.1/schema/markdownlint-cli2-config-schema.json",
3
+ "$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.17.2/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.17.1/schema/markdownlint-cli2-config-schema.json"
10
+ "default": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.17.2/schema/markdownlint-cli2-config-schema.json"
11
11
  },
12
12
  "config": {
13
- "description": "markdownlint configuration schema : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/schema/.markdownlint.jsonc",
14
- "$ref": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.3/schema/markdownlint-config-schema.json",
13
+ "description": "markdownlint configuration schema : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/schema/.markdownlint.jsonc",
14
+ "$ref": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.4/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.17.1/README.md#markdownlint-cli2jsonc",
18
+ "description": "Module names or paths of custom rules to load and use when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.17.2/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.17.1/README.md#markdownlint-cli2jsonc",
28
+ "description": "Whether to enable fixing of linting errors reported by rules that emit fix information : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.17.2/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.17.1/README.md#markdownlint-cli2jsonc",
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.17.2/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.17.1/README.md#markdownlint-cli2jsonc",
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.17.2/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.17.1/README.md#markdownlint-cli2jsonc",
47
+ "description": "Glob expressions to include when linting (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.17.2/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.17.1/README.md#markdownlint-cli2jsonc",
57
+ "description": "Glob expressions to ignore when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.17.2/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.17.1/README.md#markdownlint-cli2jsonc",
67
+ "description": "markdown-it plugins to load and use when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.17.2/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.17.1/README.md#markdownlint-cli2jsonc",
87
+ "description": "Additional paths to resolve module locations from : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.17.2/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.17.1/README.md#markdownlint-cli2jsonc",
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.17.2/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.17.1/README.md#markdownlint-cli2jsonc",
102
+ "description": "Whether to disable support of HTML comments within Markdown content : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.17.2/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.17.1/README.md#markdownlint-cli2jsonc",
107
+ "description": "Whether to disable the display of progress on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.17.2/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.17.1/README.md#markdownlint-cli2jsonc",
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.17.2/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.17.1/README.md#markdownlint-cli2jsonc",
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.17.2/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.37.3/schema/markdownlint-config-schema.json",
3
+ "$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.4/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.37.3/schema/markdownlint-config-schema.json"
10
+ "default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.4/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.37.3/doc/md001.md",
26
+ "description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md001.md",
31
+ "description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md003.md",
36
+ "description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md003.md",
60
+ "description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md004.md",
84
+ "description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md004.md",
107
+ "description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md005.md",
130
+ "description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md005.md",
135
+ "description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md007.md",
140
+ "description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md007.md",
168
+ "description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md009.md",
196
+ "description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md009.md",
223
+ "description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md010.md",
250
+ "description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md010.md",
280
+ "description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md011.md",
310
+ "description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md011.md",
315
+ "description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md012.md",
320
+ "description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md012.md",
337
+ "description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md013.md",
354
+ "description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md013.md",
408
+ "description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md014.md",
462
+ "description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md014.md",
467
+ "description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md018.md",
472
+ "description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md018.md",
477
+ "description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md019.md",
482
+ "description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md019.md",
487
+ "description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md020.md",
492
+ "description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md020.md",
497
+ "description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md021.md",
502
+ "description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md021.md",
507
+ "description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md022.md",
512
+ "description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md022.md",
547
+ "description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md023.md",
582
+ "description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md023.md",
587
+ "description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md024.md",
592
+ "description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md024.md",
608
+ "description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md025.md",
624
+ "description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md025.md",
647
+ "description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md025.md",
670
+ "description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md026.md",
693
+ "description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md026.md",
709
+ "description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md027.md",
725
+ "description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md027.md",
730
+ "description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md028.md",
735
+ "description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md028.md",
740
+ "description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md029.md",
745
+ "description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md029.md",
767
+ "description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md030.md",
789
+ "description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md030.md",
824
+ "description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md031.md",
859
+ "description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md031.md",
875
+ "description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md032.md",
891
+ "description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md032.md",
896
+ "description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md033.md",
901
+ "description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md033.md",
920
+ "description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md034.md",
939
+ "description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md034.md",
944
+ "description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md035.md",
949
+ "description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md035.md",
965
+ "description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md036.md",
981
+ "description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md036.md",
997
+ "description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md037.md",
1013
+ "description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md037.md",
1018
+ "description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md038.md",
1023
+ "description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md038.md",
1028
+ "description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md039.md",
1033
+ "description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md039.md",
1038
+ "description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md040.md",
1043
+ "description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md040.md",
1067
+ "description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md041.md",
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.37.4/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.37.3/doc/md041.md",
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.37.4/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.37.3/doc/md041.md",
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.37.4/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.37.3/doc/md042.md",
1160
+ "description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md042.md",
1165
+ "description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md043.md",
1170
+ "description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md043.md",
1195
+ "description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md044.md",
1220
+ "description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md044.md",
1249
+ "description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md045.md",
1278
+ "description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md045.md",
1283
+ "description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md046.md",
1288
+ "description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md046.md",
1309
+ "description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md047.md",
1330
+ "description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md047.md",
1335
+ "description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md048.md",
1340
+ "description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md048.md",
1361
+ "description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md049.md",
1382
+ "description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md049.md",
1403
+ "description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md050.md",
1424
+ "description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/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.37.3/doc/md050.md",
1445
+ "description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md050.md",
1446
1446
  "type": [
1447
1447
  "boolean",
1448
1448
  "object"
@@ -1463,7 +1463,7 @@
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.37.3/doc/md051.md",
1466
+ "description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md051.md",
1467
1467
  "type": [
1468
1468
  "boolean",
1469
1469
  "object"
@@ -1479,7 +1479,7 @@
1479
1479
  "additionalProperties": false
1480
1480
  },
1481
1481
  "link-fragments": {
1482
- "description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md051.md",
1482
+ "description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md051.md",
1483
1483
  "type": [
1484
1484
  "boolean",
1485
1485
  "object"
@@ -1495,7 +1495,7 @@
1495
1495
  "additionalProperties": false
1496
1496
  },
1497
1497
  "MD052": {
1498
- "description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md052.md",
1498
+ "description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md052.md",
1499
1499
  "type": [
1500
1500
  "boolean",
1501
1501
  "object"
@@ -1511,7 +1511,7 @@
1511
1511
  "additionalProperties": false
1512
1512
  },
1513
1513
  "reference-links-images": {
1514
- "description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md052.md",
1514
+ "description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md052.md",
1515
1515
  "type": [
1516
1516
  "boolean",
1517
1517
  "object"
@@ -1527,7 +1527,7 @@
1527
1527
  "additionalProperties": false
1528
1528
  },
1529
1529
  "MD053": {
1530
- "description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md053.md",
1530
+ "description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md053.md",
1531
1531
  "type": [
1532
1532
  "boolean",
1533
1533
  "object"
@@ -1548,7 +1548,7 @@
1548
1548
  "additionalProperties": false
1549
1549
  },
1550
1550
  "link-image-reference-definitions": {
1551
- "description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md053.md",
1551
+ "description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md053.md",
1552
1552
  "type": [
1553
1553
  "boolean",
1554
1554
  "object"
@@ -1569,7 +1569,7 @@
1569
1569
  "additionalProperties": false
1570
1570
  },
1571
1571
  "MD054": {
1572
- "description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md054.md",
1572
+ "description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md054.md",
1573
1573
  "type": [
1574
1574
  "boolean",
1575
1575
  "object"
@@ -1610,7 +1610,7 @@
1610
1610
  "additionalProperties": false
1611
1611
  },
1612
1612
  "link-image-style": {
1613
- "description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md054.md",
1613
+ "description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md054.md",
1614
1614
  "type": [
1615
1615
  "boolean",
1616
1616
  "object"
@@ -1651,7 +1651,7 @@
1651
1651
  "additionalProperties": false
1652
1652
  },
1653
1653
  "MD055": {
1654
- "description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md055.md",
1654
+ "description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md055.md",
1655
1655
  "type": [
1656
1656
  "boolean",
1657
1657
  "object"
@@ -1674,7 +1674,7 @@
1674
1674
  "additionalProperties": false
1675
1675
  },
1676
1676
  "table-pipe-style": {
1677
- "description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md055.md",
1677
+ "description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md055.md",
1678
1678
  "type": [
1679
1679
  "boolean",
1680
1680
  "object"
@@ -1697,22 +1697,22 @@
1697
1697
  "additionalProperties": false
1698
1698
  },
1699
1699
  "MD056": {
1700
- "description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md056.md",
1700
+ "description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md056.md",
1701
1701
  "type": "boolean",
1702
1702
  "default": true
1703
1703
  },
1704
1704
  "table-column-count": {
1705
- "description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md056.md",
1705
+ "description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md056.md",
1706
1706
  "type": "boolean",
1707
1707
  "default": true
1708
1708
  },
1709
1709
  "MD058": {
1710
- "description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md058.md",
1710
+ "description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md058.md",
1711
1711
  "type": "boolean",
1712
1712
  "default": true
1713
1713
  },
1714
1714
  "blanks-around-tables": {
1715
- "description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/doc/md058.md",
1715
+ "description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md058.md",
1716
1716
  "type": "boolean",
1717
1717
  "default": true
1718
1718
  },
@@ -1,16 +0,0 @@
1
- // @ts-check
2
-
3
- /**
4
- * Wrapper for calling Node's require.resolve with additional paths.
5
- * @param {object} require Node's require implementation (or equivalent).
6
- * @param {string} request Module path to require.
7
- * @param {string[]} paths Paths to resolve module location from.
8
- * @returns {string} Resolved file name.
9
- */
10
- const resolveModule = (require, request, paths) => {
11
- const resolvePaths = require.resolve.paths ? require.resolve.paths("") : [];
12
- const allPaths = [ ...paths, ...resolvePaths ];
13
- return require.resolve(request, { "paths": allPaths });
14
- };
15
-
16
- export default resolveModule;