File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import remarkHeadingId from "remark-heading-id";
12
12
import remarkHeadings from "./remark-headings.js" ;
13
13
import remarkPresetLintMarkdownStyleGuide from "remark-preset-lint-markdown-style-guide" ;
14
14
import remarkLintMaximumHeadingLength from "remark-lint-maximum-heading-length" ;
15
+ import remarkLintListItemIndent from "remark-lint-list-item-indent" ;
15
16
import remarkRehype from "remark-rehype" ;
16
17
import remarkReferenceLinks from "./remark-reference-links.js" ;
17
18
import remarkTableOfContents from "./remark-table-of-contents.js" ;
@@ -27,6 +28,7 @@ const build = async (filePath) => {
27
28
const file = await remark ( )
28
29
. use ( remarkPresetLintMarkdownStyleGuide )
29
30
. use ( remarkLintMaximumHeadingLength , false )
31
+ . use ( remarkLintListItemIndent , "one" )
30
32
. use ( remarkGfm )
31
33
. use ( remarkHeadingId )
32
34
. use ( remarkHeadings , {
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ The `propertyDependencies` keyword will be added to the
93
93
` https://json-schema.org/vocab/applicator ` [ applicator
94
94
vocabulary] ( ../jsonschema-core.html#applicatorvocab ) .
95
95
96
- 1 . The following will be added to the JSON Schema Core specification as a
96
+ 1 . The following will be added to the JSON Schema Core specification as a
97
97
subsection of "Keywords for Applying Subschemas Conditionally".
98
98
> ### ` propertyDependencies `
99
99
>
@@ -110,7 +110,7 @@ subsection of "Keywords for Applying Subschemas Conditionally".
110
110
>
111
111
> Omitting this keyword has the same behavior as an empty object.
112
112
113
- 2 . The following subschema will be added to the Applicator Vocabulary schema,
113
+ 2 . The following subschema will be added to the Applicator Vocabulary schema,
114
114
` https://json-schema.org/<version>/<release>/meta/applicator ` at
115
115
` /properties/propertyDependencies ` :
116
116
You can’t perform that action at this time.
0 commit comments