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";
1212import remarkHeadings from "./remark-headings.js" ;
1313import remarkPresetLintMarkdownStyleGuide from "remark-preset-lint-markdown-style-guide" ;
1414import remarkLintMaximumHeadingLength from "remark-lint-maximum-heading-length" ;
15+ import remarkLintListItemIndent from "remark-lint-list-item-indent" ;
1516import remarkRehype from "remark-rehype" ;
1617import remarkReferenceLinks from "./remark-reference-links.js" ;
1718import remarkTableOfContents from "./remark-table-of-contents.js" ;
@@ -27,6 +28,7 @@ const build = async (filePath) => {
2728 const file = await remark ( )
2829 . use ( remarkPresetLintMarkdownStyleGuide )
2930 . use ( remarkLintMaximumHeadingLength , false )
31+ . use ( remarkLintListItemIndent , "one" )
3032 . use ( remarkGfm )
3133 . use ( remarkHeadingId )
3234 . use ( remarkHeadings , {
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ The `propertyDependencies` keyword will be added to the
9393` https://json-schema.org/vocab/applicator ` [ applicator
9494vocabulary] ( ../jsonschema-core.html#applicatorvocab ) .
9595
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
9797subsection of "Keywords for Applying Subschemas Conditionally".
9898 > ### ` propertyDependencies `
9999 >
@@ -110,7 +110,7 @@ subsection of "Keywords for Applying Subschemas Conditionally".
110110 >
111111 > Omitting this keyword has the same behavior as an empty object.
112112
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,
114114 ` https://json-schema.org/<version>/<release>/meta/applicator ` at
115115 ` /properties/propertyDependencies ` :
116116
You can’t perform that action at this time.
0 commit comments