This commit is contained in:
Titus Wormer 2024-04-09 18:57:10 +02:00
parent 943a574de4
commit 6b6ea9caad
No known key found for this signature in database
GPG Key ID: E6E581152ED04E2E
140 changed files with 416 additions and 416 deletions

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-blockquote-indentation",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when block quotes are either indented too much or too little",
"license": "MIT",
"keywords": [
@ -35,7 +35,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0"
},

View File

@ -60,14 +60,14 @@ npm install remark-lint-blockquote-indentation
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintBlockquoteIndentation from 'https://esm.sh/remark-lint-blockquote-indentation@3'
import remarkLintBlockquoteIndentation from 'https://esm.sh/remark-lint-blockquote-indentation@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintBlockquoteIndentation from 'https://esm.sh/remark-lint-blockquote-indentation@3?bundle'
import remarkLintBlockquoteIndentation from 'https://esm.sh/remark-lint-blockquote-indentation@4?bundle'
</script>
```
@ -260,7 +260,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-blockquote-indentation@3`,
`remark-lint-blockquote-indentation@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-checkbox-character-style",
"version": "4.1.2",
"version": "5.0.0",
"description": "remark-lint rule to warn when list item checkboxes violate a given style",
"license": "MIT",
"keywords": [
@ -35,7 +35,7 @@
"dependencies": {
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"

View File

@ -63,14 +63,14 @@ npm install remark-lint-checkbox-character-style
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintCheckboxCharacterStyle from 'https://esm.sh/remark-lint-checkbox-character-style@4'
import remarkLintCheckboxCharacterStyle from 'https://esm.sh/remark-lint-checkbox-character-style@5'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintCheckboxCharacterStyle from 'https://esm.sh/remark-lint-checkbox-character-style@4?bundle'
import remarkLintCheckboxCharacterStyle from 'https://esm.sh/remark-lint-checkbox-character-style@5?bundle'
</script>
```
@ -311,7 +311,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-checkbox-character-style@4`,
`remark-lint-checkbox-character-style@5`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-checkbox-content-indent",
"version": "4.1.2",
"version": "5.0.0",
"description": "remark-lint rule to warn when list item checkboxes are followed by too much whitespace",
"license": "MIT",
"keywords": [
@ -36,7 +36,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0"
},

View File

@ -55,14 +55,14 @@ npm install remark-lint-checkbox-content-indent
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintCheckboxContentIndent from 'https://esm.sh/remark-lint-checkbox-content-indent@4'
import remarkLintCheckboxContentIndent from 'https://esm.sh/remark-lint-checkbox-content-indent@5'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintCheckboxContentIndent from 'https://esm.sh/remark-lint-checkbox-content-indent@4?bundle'
import remarkLintCheckboxContentIndent from 'https://esm.sh/remark-lint-checkbox-content-indent@5?bundle'
</script>
```
@ -221,7 +221,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-checkbox-content-indent@4`,
`remark-lint-checkbox-content-indent@5`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-code-block-style",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when code blocks do not adhere to a given style",
"license": "MIT",
"keywords": [
@ -33,7 +33,7 @@
"dependencies": {
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"

View File

@ -61,14 +61,14 @@ npm install remark-lint-code-block-style
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintCodeBlockStyle from 'https://esm.sh/remark-lint-code-block-style@3'
import remarkLintCodeBlockStyle from 'https://esm.sh/remark-lint-code-block-style@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintCodeBlockStyle from 'https://esm.sh/remark-lint-code-block-style@3?bundle'
import remarkLintCodeBlockStyle from 'https://esm.sh/remark-lint-code-block-style@4?bundle'
</script>
```
@ -304,7 +304,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-code-block-style@3`,
`remark-lint-code-block-style@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-definition-case",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when definition labels are not lowercase",
"license": "MIT",
"keywords": [
@ -33,7 +33,7 @@
"dependencies": {
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"scripts": {},

View File

@ -56,14 +56,14 @@ npm install remark-lint-definition-case
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintDefinitionCase from 'https://esm.sh/remark-lint-definition-case@3'
import remarkLintDefinitionCase from 'https://esm.sh/remark-lint-definition-case@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintDefinitionCase from 'https://esm.sh/remark-lint-definition-case@3?bundle'
import remarkLintDefinitionCase from 'https://esm.sh/remark-lint-definition-case@4?bundle'
</script>
```
@ -194,7 +194,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-definition-case@3`,
`remark-lint-definition-case@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-definition-spacing",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when consecutive whitespace is used in a definition",
"license": "MIT",
"keywords": [
@ -35,7 +35,7 @@
"longest-streak": "^3.0.0",
"mdast-util-phrasing": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"scripts": {},

View File

@ -60,14 +60,14 @@ npm install remark-lint-definition-spacing
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintDefinitionSpacing from 'https://esm.sh/remark-lint-definition-spacing@3'
import remarkLintDefinitionSpacing from 'https://esm.sh/remark-lint-definition-spacing@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintDefinitionSpacing from 'https://esm.sh/remark-lint-definition-spacing@3?bundle'
import remarkLintDefinitionSpacing from 'https://esm.sh/remark-lint-definition-spacing@4?bundle'
</script>
```
@ -197,7 +197,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-definition-spacing@3`,
`remark-lint-definition-spacing@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-emphasis-marker",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when emphasis markers violate the given style",
"license": "MIT",
"keywords": [
@ -32,7 +32,7 @@
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"

View File

@ -60,14 +60,14 @@ npm install remark-lint-emphasis-marker
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintEmphasisMarker from 'https://esm.sh/remark-lint-emphasis-marker@3'
import remarkLintEmphasisMarker from 'https://esm.sh/remark-lint-emphasis-marker@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintEmphasisMarker from 'https://esm.sh/remark-lint-emphasis-marker@3?bundle'
import remarkLintEmphasisMarker from 'https://esm.sh/remark-lint-emphasis-marker@4?bundle'
</script>
```
@ -276,7 +276,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-emphasis-marker@3`,
`remark-lint-emphasis-marker@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-fenced-code-flag",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when fenced code blocks occur without language flag",
"license": "MIT",
"keywords": [
@ -36,7 +36,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"quotation": "^2.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0"
},

View File

@ -61,14 +61,14 @@ npm install remark-lint-fenced-code-flag
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintFencedCodeFlag from 'https://esm.sh/remark-lint-fenced-code-flag@3'
import remarkLintFencedCodeFlag from 'https://esm.sh/remark-lint-fenced-code-flag@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintFencedCodeFlag from 'https://esm.sh/remark-lint-fenced-code-flag@3?bundle'
import remarkLintFencedCodeFlag from 'https://esm.sh/remark-lint-fenced-code-flag@4?bundle'
</script>
```
@ -312,7 +312,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-fenced-code-flag@3`,
`remark-lint-fenced-code-flag@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-fenced-code-marker",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when fenced code markers violate the given style",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"dependencies": {
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"

View File

@ -62,14 +62,14 @@ npm install remark-lint-fenced-code-marker
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintFencedCodeMarker from 'https://esm.sh/remark-lint-fenced-code-marker@3'
import remarkLintFencedCodeMarker from 'https://esm.sh/remark-lint-fenced-code-marker@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintFencedCodeMarker from 'https://esm.sh/remark-lint-fenced-code-marker@3?bundle'
import remarkLintFencedCodeMarker from 'https://esm.sh/remark-lint-fenced-code-marker@4?bundle'
</script>
```
@ -287,7 +287,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-fenced-code-marker@3`,
`remark-lint-fenced-code-marker@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-file-extension",
"version": "2.1.2",
"version": "3.0.0",
"description": "remark-lint rule to warn when the files extension violates the given style",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"dependencies": {
"@types/mdast": "^4.0.0",
"quotation": "^2.0.0",
"unified-lint-rule": "^2.0.0"
"unified-lint-rule": "^3.0.0"
},
"scripts": {},
"typeCoverage": {

View File

@ -58,14 +58,14 @@ npm install remark-lint-file-extension
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintFileExtension from 'https://esm.sh/remark-lint-file-extension@2'
import remarkLintFileExtension from 'https://esm.sh/remark-lint-file-extension@3'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintFileExtension from 'https://esm.sh/remark-lint-file-extension@2?bundle'
import remarkLintFileExtension from 'https://esm.sh/remark-lint-file-extension@3?bundle'
</script>
```
@ -236,7 +236,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-file-extension@2`,
`remark-lint-file-extension@3`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-final-definition",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when definitions are not placed at the end of the file",
"license": "MIT",
"keywords": [
@ -36,7 +36,7 @@
"devlop": "^1.0.0",
"mdast-util-mdx": "^3.0.0",
"mdast-util-phrasing": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"

View File

@ -58,14 +58,14 @@ npm install remark-lint-final-definition
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintFinalDefinition from 'https://esm.sh/remark-lint-final-definition@3'
import remarkLintFinalDefinition from 'https://esm.sh/remark-lint-final-definition@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintFinalDefinition from 'https://esm.sh/remark-lint-final-definition@3?bundle'
import remarkLintFinalDefinition from 'https://esm.sh/remark-lint-final-definition@4?bundle'
</script>
```
@ -257,7 +257,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-final-definition@3`,
`remark-lint-final-definition@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-final-newline",
"version": "2.1.2",
"version": "3.0.0",
"description": "remark-lint rule to warn when a newline at the end of a file is missing",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"dependencies": {
"@types/mdast": "^4.0.0",
"devlop": "^1.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"vfile-location": "^5.0.0"
},
"scripts": {},

View File

@ -57,14 +57,14 @@ npm install remark-lint-final-newline
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintFinalNewline from 'https://esm.sh/remark-lint-final-newline@2'
import remarkLintFinalNewline from 'https://esm.sh/remark-lint-final-newline@3'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintFinalNewline from 'https://esm.sh/remark-lint-final-newline@2?bundle'
import remarkLintFinalNewline from 'https://esm.sh/remark-lint-final-newline@3?bundle'
</script>
```
@ -179,7 +179,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-final-newline@2`,
`remark-lint-final-newline@3`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-first-heading-level",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when the first heading has a level other than a specified value",
"license": "MIT",
"keywords": [
@ -35,7 +35,7 @@
"dependencies": {
"@types/mdast": "^4.0.0",
"mdast-util-mdx": "^3.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"scripts": {},

View File

@ -54,14 +54,14 @@ npm install remark-lint-first-heading-level
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintFirstHeadingLevel from 'https://esm.sh/remark-lint-first-heading-level@3'
import remarkLintFirstHeadingLevel from 'https://esm.sh/remark-lint-first-heading-level@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintFirstHeadingLevel from 'https://esm.sh/remark-lint-first-heading-level@3?bundle'
import remarkLintFirstHeadingLevel from 'https://esm.sh/remark-lint-first-heading-level@4?bundle'
</script>
```
@ -261,7 +261,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-first-heading-level@3`,
`remark-lint-first-heading-level@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-hard-break-spaces",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when too many spaces are used to create a hard break",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit": "^5.0.0"
},

View File

@ -59,14 +59,14 @@ npm install remark-lint-hard-break-spaces
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintHardBreakSpaces from 'https://esm.sh/remark-lint-hard-break-spaces@3'
import remarkLintHardBreakSpaces from 'https://esm.sh/remark-lint-hard-break-spaces@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintHardBreakSpaces from 'https://esm.sh/remark-lint-hard-break-spaces@3?bundle'
import remarkLintHardBreakSpaces from 'https://esm.sh/remark-lint-hard-break-spaces@4?bundle'
</script>
```
@ -198,7 +198,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-hard-break-spaces@3`,
`remark-lint-hard-break-spaces@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-heading-increment",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when headings increment with more than 1 level at a time",
"license": "MIT",
"keywords": [
@ -35,7 +35,7 @@
"@types/mdast": "^4.0.0",
"devlop": "^1.0.0",
"mdast-util-mdx": "^3.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"
},

View File

@ -57,14 +57,14 @@ npm install remark-lint-heading-increment
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintHeadingIncrement from 'https://esm.sh/remark-lint-heading-increment@3'
import remarkLintHeadingIncrement from 'https://esm.sh/remark-lint-heading-increment@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintHeadingIncrement from 'https://esm.sh/remark-lint-heading-increment@3?bundle'
import remarkLintHeadingIncrement from 'https://esm.sh/remark-lint-heading-increment@4?bundle'
</script>
```
@ -255,7 +255,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-heading-increment@3`,
`remark-lint-heading-increment@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-heading-style",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when heading style violates the given style",
"license": "MIT",
"keywords": [
@ -36,7 +36,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-heading-style": "^3.0.0",
"mdast-util-phrasing": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"

View File

@ -60,14 +60,14 @@ npm install remark-lint-heading-style
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintHeadingStyle from 'https://esm.sh/remark-lint-heading-style@3'
import remarkLintHeadingStyle from 'https://esm.sh/remark-lint-heading-style@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintHeadingStyle from 'https://esm.sh/remark-lint-heading-style@3?bundle'
import remarkLintHeadingStyle from 'https://esm.sh/remark-lint-heading-style@4?bundle'
</script>
```
@ -282,7 +282,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-heading-style@3`,
`remark-lint-heading-style@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-linebreak-style",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when linebreaks violate a given or detected style",
"license": "MIT",
"keywords": [
@ -39,7 +39,7 @@
"dependencies": {
"@types/mdast": "^4.0.0",
"devlop": "^1.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"vfile-location": "^5.0.0",
"vfile-message": "^4.0.0"
},

View File

@ -56,14 +56,14 @@ npm install remark-lint-linebreak-style
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintLinebreakStyle from 'https://esm.sh/remark-lint-linebreak-style@3'
import remarkLintLinebreakStyle from 'https://esm.sh/remark-lint-linebreak-style@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintLinebreakStyle from 'https://esm.sh/remark-lint-linebreak-style@3?bundle'
import remarkLintLinebreakStyle from 'https://esm.sh/remark-lint-linebreak-style@4?bundle'
</script>
```
@ -264,7 +264,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-linebreak-style@3`,
`remark-lint-linebreak-style@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-link-title-style",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when link and definition titles occur with incorrect quotes",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"

View File

@ -62,14 +62,14 @@ npm install remark-lint-link-title-style
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintLinkTitleStyle from 'https://esm.sh/remark-lint-link-title-style@3'
import remarkLintLinkTitleStyle from 'https://esm.sh/remark-lint-link-title-style@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintLinkTitleStyle from 'https://esm.sh/remark-lint-link-title-style@3?bundle'
import remarkLintLinkTitleStyle from 'https://esm.sh/remark-lint-link-title-style@4?bundle'
</script>
```
@ -357,7 +357,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-link-title-style@3`,
`remark-lint-link-title-style@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-list-item-bullet-indent",
"version": "4.1.2",
"version": "5.0.0",
"description": "remark-lint rule to warn when list item bullets are indented",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"dependencies": {
"@types/mdast": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0"
},
"scripts": {},

View File

@ -58,14 +58,14 @@ npm install remark-lint-list-item-bullet-indent
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintListItemBulletIndent from 'https://esm.sh/remark-lint-list-item-bullet-indent@4'
import remarkLintListItemBulletIndent from 'https://esm.sh/remark-lint-list-item-bullet-indent@5'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintListItemBulletIndent from 'https://esm.sh/remark-lint-list-item-bullet-indent@4?bundle'
import remarkLintListItemBulletIndent from 'https://esm.sh/remark-lint-list-item-bullet-indent@5?bundle'
</script>
```
@ -198,7 +198,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-list-item-bullet-indent@4`,
`remark-lint-list-item-bullet-indent@5`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-list-item-content-indent",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when the content of a list item has mixed indentation",
"license": "MIT",
"keywords": [
@ -36,7 +36,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"

View File

@ -62,14 +62,14 @@ npm install remark-lint-list-item-content-indent
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintListItemContentIndent from 'https://esm.sh/remark-lint-list-item-content-indent@3'
import remarkLintListItemContentIndent from 'https://esm.sh/remark-lint-list-item-content-indent@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintListItemContentIndent from 'https://esm.sh/remark-lint-list-item-content-indent@3?bundle'
import remarkLintListItemContentIndent from 'https://esm.sh/remark-lint-list-item-content-indent@4?bundle'
</script>
```
@ -253,7 +253,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-list-item-content-indent@3`,
`remark-lint-list-item-content-indent@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-list-item-indent",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when the spacing between a list items bullet and its content violates a given style",
"license": "MIT",
"keywords": [
@ -35,7 +35,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0"
},

View File

@ -61,14 +61,14 @@ npm install remark-lint-list-item-indent
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintListItemIndent from 'https://esm.sh/remark-lint-list-item-indent@3'
import remarkLintListItemIndent from 'https://esm.sh/remark-lint-list-item-indent@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintListItemIndent from 'https://esm.sh/remark-lint-list-item-indent@3?bundle'
import remarkLintListItemIndent from 'https://esm.sh/remark-lint-list-item-indent@4?bundle'
</script>
```
@ -509,7 +509,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-list-item-indent@3`,
`remark-lint-list-item-indent@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-list-item-spacing",
"version": "4.1.2",
"version": "5.0.0",
"description": "remark-lint rule to warn when list looseness is incorrect",
"license": "MIT",
"keywords": [
@ -36,7 +36,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"

View File

@ -57,14 +57,14 @@ npm install remark-lint-list-item-spacing
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintListItemSpacing from 'https://esm.sh/remark-lint-list-item-spacing@4'
import remarkLintListItemSpacing from 'https://esm.sh/remark-lint-list-item-spacing@5'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintListItemSpacing from 'https://esm.sh/remark-lint-list-item-spacing@4?bundle'
import remarkLintListItemSpacing from 'https://esm.sh/remark-lint-list-item-spacing@5?bundle'
</script>
```
@ -276,7 +276,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-list-item-spacing@4`,
`remark-lint-list-item-spacing@5`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-maximum-heading-length",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when headings are too long",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-mdx": "^3.0.0",
"mdast-util-to-string": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0"
},

View File

@ -56,14 +56,14 @@ npm install remark-lint-maximum-heading-length
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintMaximumHeadingLength from 'https://esm.sh/remark-lint-maximum-heading-length@3'
import remarkLintMaximumHeadingLength from 'https://esm.sh/remark-lint-maximum-heading-length@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintMaximumHeadingLength from 'https://esm.sh/remark-lint-maximum-heading-length@3?bundle'
import remarkLintMaximumHeadingLength from 'https://esm.sh/remark-lint-maximum-heading-length@4?bundle'
</script>
```
@ -209,7 +209,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-maximum-heading-length@3`,
`remark-lint-maximum-heading-length@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-maximum-line-length",
"version": "3.1.3",
"version": "4.0.0",
"description": "remark-lint rule to warn when lines are too long",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"@types/mdast": "^4.0.0",
"pluralize": "^8.0.0",
"mdast-util-mdx": "^3.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit": "^5.0.0"
},

View File

@ -56,14 +56,14 @@ npm install remark-lint-maximum-line-length
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintMaximumLineLength from 'https://esm.sh/remark-lint-maximum-line-length@3'
import remarkLintMaximumLineLength from 'https://esm.sh/remark-lint-maximum-line-length@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintMaximumLineLength from 'https://esm.sh/remark-lint-maximum-line-length@3?bundle'
import remarkLintMaximumLineLength from 'https://esm.sh/remark-lint-maximum-line-length@4?bundle'
</script>
```
@ -342,7 +342,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-maximum-line-length@3`,
`remark-lint-maximum-line-length@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-blockquote-without-marker",
"version": "5.1.2",
"version": "6.0.0",
"description": "remark-lint rule to warn when blank lines without markers (`>`) are found in a block quote",
"license": "MIT",
"keywords": [
@ -37,7 +37,7 @@
"mdast-util-directive": "^3.0.0",
"mdast-util-phrasing": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-location": "^5.0.0"

View File

@ -59,14 +59,14 @@ npm install remark-lint-no-blockquote-without-marker
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoBlockquoteWithoutMarker from 'https://esm.sh/remark-lint-no-blockquote-without-marker@5'
import remarkLintNoBlockquoteWithoutMarker from 'https://esm.sh/remark-lint-no-blockquote-without-marker@6'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoBlockquoteWithoutMarker from 'https://esm.sh/remark-lint-no-blockquote-without-marker@5?bundle'
import remarkLintNoBlockquoteWithoutMarker from 'https://esm.sh/remark-lint-no-blockquote-without-marker@6?bundle'
</script>
```
@ -251,7 +251,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-blockquote-without-marker@5`,
`remark-lint-no-blockquote-without-marker@6`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-consecutive-blank-lines",
"version": "4.1.3",
"version": "5.0.0",
"description": "remark-lint rule to warn for too many consecutive blank lines",
"license": "MIT",
"keywords": [
@ -36,7 +36,7 @@
"mdast-util-mdx": "^3.0.0",
"mdast-util-phrasing": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0"
},

View File

@ -57,14 +57,14 @@ npm install remark-lint-no-consecutive-blank-lines
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoConsecutiveBlankLines from 'https://esm.sh/remark-lint-no-consecutive-blank-lines@4'
import remarkLintNoConsecutiveBlankLines from 'https://esm.sh/remark-lint-no-consecutive-blank-lines@5'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoConsecutiveBlankLines from 'https://esm.sh/remark-lint-no-consecutive-blank-lines@4?bundle'
import remarkLintNoConsecutiveBlankLines from 'https://esm.sh/remark-lint-no-consecutive-blank-lines@5?bundle'
</script>
```
@ -420,7 +420,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-consecutive-blank-lines@4`,
`remark-lint-no-consecutive-blank-lines@5`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-duplicate-defined-urls",
"version": "2.1.2",
"version": "3.0.0",
"description": "remark-lint rule to warn on definitions that define the same urls",
"license": "MIT",
"keywords": [
@ -35,7 +35,7 @@
"@types/mdast": "^4.0.0",
"devlop": "^1.0.0",
"mdast-util-phrasing": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"
},

View File

@ -52,14 +52,14 @@ npm install remark-lint-no-duplicate-defined-urls
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoDuplicateDefinedUrls from 'https://esm.sh/remark-lint-no-duplicate-defined-urls@2'
import remarkLintNoDuplicateDefinedUrls from 'https://esm.sh/remark-lint-no-duplicate-defined-urls@3'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoDuplicateDefinedUrls from 'https://esm.sh/remark-lint-no-duplicate-defined-urls@2?bundle'
import remarkLintNoDuplicateDefinedUrls from 'https://esm.sh/remark-lint-no-duplicate-defined-urls@3?bundle'
</script>
```
@ -173,7 +173,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-duplicate-defined-urls@2`,
`remark-lint-no-duplicate-defined-urls@3`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-duplicate-definitions",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn on duplicate definitions",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"@types/mdast": "^4.0.0",
"devlop": "^1.0.0",
"mdast-util-phrasing": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"
},

View File

@ -56,14 +56,14 @@ npm install remark-lint-no-duplicate-definitions
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoDuplicateDefinitions from 'https://esm.sh/remark-lint-no-duplicate-definitions@3'
import remarkLintNoDuplicateDefinitions from 'https://esm.sh/remark-lint-no-duplicate-definitions@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoDuplicateDefinitions from 'https://esm.sh/remark-lint-no-duplicate-definitions@3?bundle'
import remarkLintNoDuplicateDefinitions from 'https://esm.sh/remark-lint-no-duplicate-definitions@4?bundle'
</script>
```
@ -198,7 +198,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-duplicate-definitions@3`,
`remark-lint-no-duplicate-definitions@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-duplicate-headings-in-section",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn on duplicate headings in a section",
"license": "MIT",
"keywords": [
@ -36,7 +36,7 @@
"devlop": "^1.0.0",
"mdast-util-mdx": "^3.0.0",
"mdast-util-to-string": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"
},

View File

@ -53,14 +53,14 @@ npm install remark-lint-no-duplicate-headings-in-section
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoDuplicateHeadingsInSection from 'https://esm.sh/remark-lint-no-duplicate-headings-in-section@3'
import remarkLintNoDuplicateHeadingsInSection from 'https://esm.sh/remark-lint-no-duplicate-headings-in-section@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoDuplicateHeadingsInSection from 'https://esm.sh/remark-lint-no-duplicate-headings-in-section@3?bundle'
import remarkLintNoDuplicateHeadingsInSection from 'https://esm.sh/remark-lint-no-duplicate-headings-in-section@4?bundle'
</script>
```
@ -232,7 +232,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-duplicate-headings-in-section@3`,
`remark-lint-no-duplicate-headings-in-section@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-duplicate-headings",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn on duplicate headings",
"license": "MIT",
"keywords": [
@ -35,7 +35,7 @@
"devlop": "^1.0.0",
"mdast-util-mdx": "^3.0.0",
"mdast-util-to-string": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"
},

View File

@ -56,14 +56,14 @@ npm install remark-lint-no-duplicate-headings
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoDuplicateHeadings from 'https://esm.sh/remark-lint-no-duplicate-headings@3'
import remarkLintNoDuplicateHeadings from 'https://esm.sh/remark-lint-no-duplicate-headings@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoDuplicateHeadings from 'https://esm.sh/remark-lint-no-duplicate-headings@3?bundle'
import remarkLintNoDuplicateHeadings from 'https://esm.sh/remark-lint-no-duplicate-headings@4?bundle'
</script>
```
@ -205,7 +205,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-duplicate-headings@3`,
`remark-lint-no-duplicate-headings@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-emphasis-as-heading",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when emphasis or importance is used instead of a heading",
"license": "MIT",
"keywords": [
@ -33,7 +33,7 @@
"dependencies": {
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"scripts": {},

View File

@ -57,14 +57,14 @@ npm install remark-lint-no-emphasis-as-heading
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoEmphasisAsHeading from 'https://esm.sh/remark-lint-no-emphasis-as-heading@3'
import remarkLintNoEmphasisAsHeading from 'https://esm.sh/remark-lint-no-emphasis-as-heading@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoEmphasisAsHeading from 'https://esm.sh/remark-lint-no-emphasis-as-heading@3?bundle'
import remarkLintNoEmphasisAsHeading from 'https://esm.sh/remark-lint-no-emphasis-as-heading@4?bundle'
</script>
```
@ -187,7 +187,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-emphasis-as-heading@3`,
`remark-lint-no-emphasis-as-heading@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-empty-url",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn on empty URLs in links and images",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"scripts": {},

View File

@ -53,14 +53,14 @@ npm install remark-lint-no-empty-url
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoEmptyUrl from 'https://esm.sh/remark-lint-no-empty-url@3'
import remarkLintNoEmptyUrl from 'https://esm.sh/remark-lint-no-empty-url@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoEmptyUrl from 'https://esm.sh/remark-lint-no-empty-url@3?bundle'
import remarkLintNoEmptyUrl from 'https://esm.sh/remark-lint-no-empty-url@4?bundle'
</script>
```
@ -182,7 +182,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-empty-url@3`,
`remark-lint-no-empty-url@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-file-name-articles",
"version": "2.1.2",
"version": "3.0.0",
"description": "remark-lint rule to warn when file name start with an article",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified-lint-rule": "^2.0.0"
"unified-lint-rule": "^3.0.0"
},
"scripts": {},
"typeCoverage": {

View File

@ -55,14 +55,14 @@ npm install remark-lint-no-file-name-articles
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoFileNameArticles from 'https://esm.sh/remark-lint-no-file-name-articles@2'
import remarkLintNoFileNameArticles from 'https://esm.sh/remark-lint-no-file-name-articles@3'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoFileNameArticles from 'https://esm.sh/remark-lint-no-file-name-articles@2?bundle'
import remarkLintNoFileNameArticles from 'https://esm.sh/remark-lint-no-file-name-articles@3?bundle'
</script>
```
@ -171,7 +171,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-file-name-articles@2`,
`remark-lint-no-file-name-articles@3`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-file-name-consecutive-dashes",
"version": "2.1.2",
"version": "3.0.0",
"description": "remark-lint rule to warn when file names contain consecutive dashes",
"license": "MIT",
"keywords": [
@ -35,7 +35,7 @@
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified-lint-rule": "^2.0.0"
"unified-lint-rule": "^3.0.0"
},
"scripts": {},
"typeCoverage": {

View File

@ -55,14 +55,14 @@ npm install remark-lint-no-file-name-consecutive-dashes
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoFileNameConsecutiveDashes from 'https://esm.sh/remark-lint-no-file-name-consecutive-dashes@2'
import remarkLintNoFileNameConsecutiveDashes from 'https://esm.sh/remark-lint-no-file-name-consecutive-dashes@3'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoFileNameConsecutiveDashes from 'https://esm.sh/remark-lint-no-file-name-consecutive-dashes@2?bundle'
import remarkLintNoFileNameConsecutiveDashes from 'https://esm.sh/remark-lint-no-file-name-consecutive-dashes@3?bundle'
</script>
```
@ -155,7 +155,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-file-name-consecutive-dashes@2`,
`remark-lint-no-file-name-consecutive-dashes@3`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-file-name-irregular-characters",
"version": "2.1.2",
"version": "3.0.0",
"description": "remark-lint rule to warn when file names contain irregular characters",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified-lint-rule": "^2.0.0"
"unified-lint-rule": "^3.0.0"
},
"scripts": {},
"typeCoverage": {

View File

@ -55,14 +55,14 @@ npm install remark-lint-no-file-name-irregular-characters
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoFileNameIrregularCharacters from 'https://esm.sh/remark-lint-no-file-name-irregular-characters@2'
import remarkLintNoFileNameIrregularCharacters from 'https://esm.sh/remark-lint-no-file-name-irregular-characters@3'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoFileNameIrregularCharacters from 'https://esm.sh/remark-lint-no-file-name-irregular-characters@2?bundle'
import remarkLintNoFileNameIrregularCharacters from 'https://esm.sh/remark-lint-no-file-name-irregular-characters@3?bundle'
</script>
```
@ -202,7 +202,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-file-name-irregular-characters@2`,
`remark-lint-no-file-name-irregular-characters@3`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-file-name-mixed-case",
"version": "2.1.2",
"version": "3.0.0",
"description": "remark-lint rule to warn when file names use mixed case",
"license": "MIT",
"keywords": [
@ -33,7 +33,7 @@
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified-lint-rule": "^2.0.0"
"unified-lint-rule": "^3.0.0"
},
"scripts": {},
"typeCoverage": {

View File

@ -56,14 +56,14 @@ npm install remark-lint-no-file-name-mixed-case
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoFileNameMixedCase from 'https://esm.sh/remark-lint-no-file-name-mixed-case@2'
import remarkLintNoFileNameMixedCase from 'https://esm.sh/remark-lint-no-file-name-mixed-case@3'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoFileNameMixedCase from 'https://esm.sh/remark-lint-no-file-name-mixed-case@2?bundle'
import remarkLintNoFileNameMixedCase from 'https://esm.sh/remark-lint-no-file-name-mixed-case@3?bundle'
</script>
```
@ -162,7 +162,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-file-name-mixed-case@2`,
`remark-lint-no-file-name-mixed-case@3`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-file-name-outer-dashes",
"version": "2.1.2",
"version": "3.0.0",
"description": "remark-lint rule to warn when file names contain initial or final dashes",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified-lint-rule": "^2.0.0"
"unified-lint-rule": "^3.0.0"
},
"scripts": {},
"typeCoverage": {

View File

@ -55,14 +55,14 @@ npm install remark-lint-no-file-name-outer-dashes
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoFileNameOuterDashes from 'https://esm.sh/remark-lint-no-file-name-outer-dashes@2'
import remarkLintNoFileNameOuterDashes from 'https://esm.sh/remark-lint-no-file-name-outer-dashes@3'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoFileNameOuterDashes from 'https://esm.sh/remark-lint-no-file-name-outer-dashes@2?bundle'
import remarkLintNoFileNameOuterDashes from 'https://esm.sh/remark-lint-no-file-name-outer-dashes@3?bundle'
</script>
```
@ -163,7 +163,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-file-name-outer-dashes@2`,
`remark-lint-no-file-name-outer-dashes@3`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-heading-content-indent",
"version": "4.1.2",
"version": "5.0.0",
"description": "remark-lint rule to warn when heading content is indented",
"license": "MIT",
"keywords": [
@ -35,7 +35,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0"
},

View File

@ -58,14 +58,14 @@ npm install remark-lint-no-heading-content-indent
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoHeadingContentIndent from 'https://esm.sh/remark-lint-no-heading-content-indent@4'
import remarkLintNoHeadingContentIndent from 'https://esm.sh/remark-lint-no-heading-content-indent@5'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoHeadingContentIndent from 'https://esm.sh/remark-lint-no-heading-content-indent@4?bundle'
import remarkLintNoHeadingContentIndent from 'https://esm.sh/remark-lint-no-heading-content-indent@5?bundle'
</script>
```
@ -211,7 +211,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-heading-content-indent@4`,
`remark-lint-no-heading-content-indent@5`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-heading-indent",
"version": "4.1.2",
"version": "5.0.0",
"description": "remark-lint rule to warn when headings are indented",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0"
},

View File

@ -53,14 +53,14 @@ npm install remark-lint-no-heading-indent
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoHeadingIndent from 'https://esm.sh/remark-lint-no-heading-indent@4'
import remarkLintNoHeadingIndent from 'https://esm.sh/remark-lint-no-heading-indent@5'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoHeadingIndent from 'https://esm.sh/remark-lint-no-heading-indent@4?bundle'
import remarkLintNoHeadingIndent from 'https://esm.sh/remark-lint-no-heading-indent@5?bundle'
</script>
```
@ -207,7 +207,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-heading-indent@4`,
`remark-lint-no-heading-indent@5`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-heading-like-paragraph",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to for too many hashes (h7+ “headings”)",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-phrasing": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0"
},

View File

@ -51,14 +51,14 @@ npm install remark-lint-no-heading-like-paragraph
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoHeadingLikeParagraph from 'https://esm.sh/remark-lint-no-heading-like-paragraph@3'
import remarkLintNoHeadingLikeParagraph from 'https://esm.sh/remark-lint-no-heading-like-paragraph@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoHeadingLikeParagraph from 'https://esm.sh/remark-lint-no-heading-like-paragraph@3?bundle'
import remarkLintNoHeadingLikeParagraph from 'https://esm.sh/remark-lint-no-heading-like-paragraph@4?bundle'
</script>
```
@ -172,7 +172,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-heading-like-paragraph@3`,
`remark-lint-no-heading-like-paragraph@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-heading-punctuation",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when headings end in illegal characters",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-mdx": "^3.0.0",
"mdast-util-to-string": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"scripts": {},

View File

@ -55,14 +55,14 @@ npm install remark-lint-no-heading-punctuation
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoHeadingPunctuation from 'https://esm.sh/remark-lint-no-heading-punctuation@3'
import remarkLintNoHeadingPunctuation from 'https://esm.sh/remark-lint-no-heading-punctuation@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoHeadingPunctuation from 'https://esm.sh/remark-lint-no-heading-punctuation@3?bundle'
import remarkLintNoHeadingPunctuation from 'https://esm.sh/remark-lint-no-heading-punctuation@4?bundle'
</script>
```
@ -239,7 +239,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-heading-punctuation@3`,
`remark-lint-no-heading-punctuation@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-html",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when HTML nodes are used",
"license": "MIT",
"keywords": [
@ -31,7 +31,7 @@
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"scripts": {},

View File

@ -52,14 +52,14 @@ npm install remark-lint-no-html
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoHtml from 'https://esm.sh/remark-lint-no-html@3'
import remarkLintNoHtml from 'https://esm.sh/remark-lint-no-html@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoHtml from 'https://esm.sh/remark-lint-no-html@3?bundle'
import remarkLintNoHtml from 'https://esm.sh/remark-lint-no-html@4?bundle'
</script>
```
@ -193,7 +193,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-html@3`,
`remark-lint-no-html@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-literal-urls",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when URLs without angle brackets are used",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"@types/mdast": "^4.0.0",
"mdast-util-to-string": "^4.0.0",
"micromark-util-character": "^2.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0"
},

View File

@ -60,14 +60,14 @@ npm install remark-lint-no-literal-urls
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoLiteralUrls from 'https://esm.sh/remark-lint-no-literal-urls@3'
import remarkLintNoLiteralUrls from 'https://esm.sh/remark-lint-no-literal-urls@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoLiteralUrls from 'https://esm.sh/remark-lint-no-literal-urls@3?bundle'
import remarkLintNoLiteralUrls from 'https://esm.sh/remark-lint-no-literal-urls@4?bundle'
</script>
```
@ -200,7 +200,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-literal-urls@3`,
`remark-lint-no-literal-urls@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-missing-blank-lines",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when missing blank lines",
"license": "MIT",
"keywords": [
@ -36,7 +36,7 @@
"mdast-util-math": "^3.0.0",
"mdast-util-mdx": "^3.0.0",
"mdast-util-phrasing": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0"
},

View File

@ -54,14 +54,14 @@ npm install remark-lint-no-missing-blank-lines
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoMissingBlankLines from 'https://esm.sh/remark-lint-no-missing-blank-lines@3'
import remarkLintNoMissingBlankLines from 'https://esm.sh/remark-lint-no-missing-blank-lines@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoMissingBlankLines from 'https://esm.sh/remark-lint-no-missing-blank-lines@3?bundle'
import remarkLintNoMissingBlankLines from 'https://esm.sh/remark-lint-no-missing-blank-lines@4?bundle'
</script>
```
@ -336,7 +336,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-missing-blank-lines@3`,
`remark-lint-no-missing-blank-lines@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-multiple-toplevel-headings",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when multiple top level headings are used",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"@types/mdast": "^4.0.0",
"devlop": "^1.0.0",
"mdast-util-mdx": "^3.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"
},

View File

@ -58,14 +58,14 @@ npm install remark-lint-no-multiple-toplevel-headings
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoMultipleToplevelHeadings from 'https://esm.sh/remark-lint-no-multiple-toplevel-headings@3'
import remarkLintNoMultipleToplevelHeadings from 'https://esm.sh/remark-lint-no-multiple-toplevel-headings@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoMultipleToplevelHeadings from 'https://esm.sh/remark-lint-no-multiple-toplevel-headings@3?bundle'
import remarkLintNoMultipleToplevelHeadings from 'https://esm.sh/remark-lint-no-multiple-toplevel-headings@4?bundle'
</script>
```
@ -258,7 +258,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-multiple-toplevel-headings@3`,
`remark-lint-no-multiple-toplevel-headings@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-paragraph-content-indent",
"version": "4.1.2",
"version": "5.0.0",
"description": "remark-lint rule to warn when the content in paragraphs are indented",
"license": "MIT",
"keywords": [
@ -36,7 +36,7 @@
"devlop": "^1.0.0",
"mdast-util-phrasing": "^4.0.0",
"pluralize": "^8.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-location": "^5.0.0"

View File

@ -52,14 +52,14 @@ npm install remark-lint-no-paragraph-content-indent
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoParagraphContentIndent from 'https://esm.sh/remark-lint-no-paragraph-content-indent@4'
import remarkLintNoParagraphContentIndent from 'https://esm.sh/remark-lint-no-paragraph-content-indent@5'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoParagraphContentIndent from 'https://esm.sh/remark-lint-no-paragraph-content-indent@4?bundle'
import remarkLintNoParagraphContentIndent from 'https://esm.sh/remark-lint-no-paragraph-content-indent@5?bundle'
</script>
```
@ -200,7 +200,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-paragraph-content-indent@4`,
`remark-lint-no-paragraph-content-indent@5`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-reference-like-url",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when URLs are also defined identifiers",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"dependencies": {
"@types/mdast": "^4.0.0",
"devlop": "^1.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0"

View File

@ -53,14 +53,14 @@ npm install remark-lint-no-reference-like-url
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoReferenceLikeUrl from 'https://esm.sh/remark-lint-no-reference-like-url@3'
import remarkLintNoReferenceLikeUrl from 'https://esm.sh/remark-lint-no-reference-like-url@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoReferenceLikeUrl from 'https://esm.sh/remark-lint-no-reference-like-url@3?bundle'
import remarkLintNoReferenceLikeUrl from 'https://esm.sh/remark-lint-no-reference-like-url@4?bundle'
</script>
```
@ -194,7 +194,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-reference-like-url@3`,
`remark-lint-no-reference-like-url@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-shell-dollars",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when shell code is prefixed by dollars",
"license": "MIT",
"keywords": [
@ -34,7 +34,7 @@
"@types/mdast": "^4.0.0",
"collapse-white-space": "^2.0.0",
"mdast-util-phrasing": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"scripts": {},

View File

@ -57,14 +57,14 @@ npm install remark-lint-no-shell-dollars
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoShellDollars from 'https://esm.sh/remark-lint-no-shell-dollars@3'
import remarkLintNoShellDollars from 'https://esm.sh/remark-lint-no-shell-dollars@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoShellDollars from 'https://esm.sh/remark-lint-no-shell-dollars@3?bundle'
import remarkLintNoShellDollars from 'https://esm.sh/remark-lint-no-shell-dollars@4?bundle'
</script>
```
@ -206,7 +206,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-shell-dollars@3`,
`remark-lint-no-shell-dollars@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-shortcut-reference-image",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when shortcut reference images are used",
"license": "MIT",
"keywords": [
@ -33,7 +33,7 @@
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"scripts": {},

View File

@ -57,14 +57,14 @@ npm install remark-lint-no-shortcut-reference-image
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoShortcutReferenceImage from 'https://esm.sh/remark-lint-no-shortcut-reference-image@3'
import remarkLintNoShortcutReferenceImage from 'https://esm.sh/remark-lint-no-shortcut-reference-image@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoShortcutReferenceImage from 'https://esm.sh/remark-lint-no-shortcut-reference-image@3?bundle'
import remarkLintNoShortcutReferenceImage from 'https://esm.sh/remark-lint-no-shortcut-reference-image@4?bundle'
</script>
```
@ -181,7 +181,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-shortcut-reference-image@3`,
`remark-lint-no-shortcut-reference-image@4`,
compatible with Node.js 16.
## Contribute

View File

@ -1,6 +1,6 @@
{
"name": "remark-lint-no-shortcut-reference-link",
"version": "3.1.2",
"version": "4.0.0",
"description": "remark-lint rule to warn when shortcut reference links are used",
"license": "MIT",
"keywords": [
@ -33,7 +33,7 @@
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified-lint-rule": "^2.0.0",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"scripts": {},

View File

@ -57,14 +57,14 @@ npm install remark-lint-no-shortcut-reference-link
In Deno with [`esm.sh`][esm-sh]:
```js
import remarkLintNoShortcutReferenceLink from 'https://esm.sh/remark-lint-no-shortcut-reference-link@3'
import remarkLintNoShortcutReferenceLink from 'https://esm.sh/remark-lint-no-shortcut-reference-link@4'
```
In browsers with [`esm.sh`][esm-sh]:
```html
<script type="module">
import remarkLintNoShortcutReferenceLink from 'https://esm.sh/remark-lint-no-shortcut-reference-link@3?bundle'
import remarkLintNoShortcutReferenceLink from 'https://esm.sh/remark-lint-no-shortcut-reference-link@4?bundle'
</script>
```
@ -181,7 +181,7 @@ versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
`remark-lint-no-shortcut-reference-link@3`,
`remark-lint-no-shortcut-reference-link@4`,
compatible with Node.js 16.
## Contribute

Some files were not shown because too many files have changed in this diff Show More