|
1 | 1 | {
|
2 | 2 | "$schema": "http://json-schema.org/draft-07/schema#",
|
3 |
| - "$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.17.0/schema/markdownlint-cli2-config-schema.json", |
| 3 | + "$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.17.1/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.0/schema/markdownlint-cli2-config-schema.json" |
| 10 | + "default": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.17.1/schema/markdownlint-cli2-config-schema.json" |
11 | 11 | },
|
12 | 12 | "config": {
|
13 | 13 | "description": "markdownlint configuration schema : https://github.com/DavidAnson/markdownlint/blob/v0.37.3/schema/.markdownlint.jsonc",
|
14 | 14 | "$ref": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.3/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.0/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.1/README.md#markdownlint-cli2jsonc", |
19 | 19 | "type": "array",
|
20 | 20 | "default": [],
|
21 | 21 | "items": {
|
|
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.0/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.1/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.0/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.1/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.0/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.1/README.md#markdownlint-cli2jsonc", |
40 | 40 | "type": [
|
41 | 41 | "boolean",
|
42 | 42 | "string"
|
43 | 43 | ],
|
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.0/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.1/README.md#markdownlint-cli2jsonc", |
48 | 48 | "type": "array",
|
49 | 49 | "default": [],
|
50 | 50 | "items": {
|
|
54 | 54 | }
|
55 | 55 | },
|
56 | 56 | "ignores": {
|
57 |
| - "description": "Glob expressions to ignore when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.17.0/README.md#markdownlint-cli2jsonc", |
| 57 | + "description": "Glob expressions to ignore when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.17.1/README.md#markdownlint-cli2jsonc", |
58 | 58 | "type": "array",
|
59 | 59 | "default": [],
|
60 | 60 | "items": {
|
|
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.0/README.md#markdownlint-cli2jsonc", |
| 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", |
68 | 68 | "type": "array",
|
69 | 69 | "default": [],
|
70 | 70 | "items": {
|
|
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.0/README.md#markdownlint-cli2jsonc", |
| 87 | + "description": "Additional paths to resolve module locations from : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.17.1/README.md#markdownlint-cli2jsonc", |
88 | 88 | "type": "array",
|
89 | 89 | "default": [],
|
90 | 90 | "items": {
|
|
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.0/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.1/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.0/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.1/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.0/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.1/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.0/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.1/README.md#markdownlint-cli2jsonc", |
113 | 113 | "type": "array",
|
114 | 114 | "default": [],
|
115 | 115 | "items": {
|
|
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.0/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.1/README.md#markdownlint-cli2jsonc", |
133 | 133 | "type": "boolean",
|
134 | 134 | "default": false
|
135 | 135 | }
|
|
0 commit comments