Skip to content

Commit 6b6ea9c

Browse files
committed
10.0.0
1 parent 943a574 commit 6b6ea9c

140 files changed

Lines changed: 416 additions & 416 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/remark-lint-blockquote-indentation/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "remark-lint-blockquote-indentation",
3-
"version": "3.1.2",
3+
"version": "4.0.0",
44
"description": "remark-lint rule to warn when block quotes are either indented too much or too little",
55
"license": "MIT",
66
"keywords": [
@@ -35,7 +35,7 @@
3535
"@types/mdast": "^4.0.0",
3636
"mdast-util-phrasing": "^4.0.0",
3737
"pluralize": "^8.0.0",
38-
"unified-lint-rule": "^2.0.0",
38+
"unified-lint-rule": "^3.0.0",
3939
"unist-util-position": "^5.0.0",
4040
"unist-util-visit-parents": "^6.0.0"
4141
},

packages/remark-lint-blockquote-indentation/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ npm install remark-lint-blockquote-indentation
6060
In Deno with [`esm.sh`][esm-sh]:
6161

6262
```js
63-
import remarkLintBlockquoteIndentation from 'https://esm.sh/remark-lint-blockquote-indentation@3'
63+
import remarkLintBlockquoteIndentation from 'https://esm.sh/remark-lint-blockquote-indentation@4'
6464
```
6565

6666
In browsers with [`esm.sh`][esm-sh]:
6767

6868
```html
6969
<script type="module">
70-
import remarkLintBlockquoteIndentation from 'https://esm.sh/remark-lint-blockquote-indentation@3?bundle'
70+
import remarkLintBlockquoteIndentation from 'https://esm.sh/remark-lint-blockquote-indentation@4?bundle'
7171
</script>
7272
```
7373

@@ -260,7 +260,7 @@ versions of Node.js.
260260
When we cut a new major release, we drop support for unmaintained versions of
261261
Node.
262262
This means we try to keep the current release line,
263-
`remark-lint-blockquote-indentation@3`,
263+
`remark-lint-blockquote-indentation@4`,
264264
compatible with Node.js 16.
265265

266266
## Contribute

packages/remark-lint-checkbox-character-style/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "remark-lint-checkbox-character-style",
3-
"version": "4.1.2",
3+
"version": "5.0.0",
44
"description": "remark-lint rule to warn when list item checkboxes violate a given style",
55
"license": "MIT",
66
"keywords": [
@@ -35,7 +35,7 @@
3535
"dependencies": {
3636
"@types/mdast": "^4.0.0",
3737
"mdast-util-phrasing": "^4.0.0",
38-
"unified-lint-rule": "^2.0.0",
38+
"unified-lint-rule": "^3.0.0",
3939
"unist-util-position": "^5.0.0",
4040
"unist-util-visit-parents": "^6.0.0",
4141
"vfile-message": "^4.0.0"

packages/remark-lint-checkbox-character-style/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ npm install remark-lint-checkbox-character-style
6363
In Deno with [`esm.sh`][esm-sh]:
6464

6565
```js
66-
import remarkLintCheckboxCharacterStyle from 'https://esm.sh/remark-lint-checkbox-character-style@4'
66+
import remarkLintCheckboxCharacterStyle from 'https://esm.sh/remark-lint-checkbox-character-style@5'
6767
```
6868

6969
In browsers with [`esm.sh`][esm-sh]:
7070

7171
```html
7272
<script type="module">
73-
import remarkLintCheckboxCharacterStyle from 'https://esm.sh/remark-lint-checkbox-character-style@4?bundle'
73+
import remarkLintCheckboxCharacterStyle from 'https://esm.sh/remark-lint-checkbox-character-style@5?bundle'
7474
</script>
7575
```
7676

@@ -311,7 +311,7 @@ versions of Node.js.
311311
When we cut a new major release, we drop support for unmaintained versions of
312312
Node.
313313
This means we try to keep the current release line,
314-
`remark-lint-checkbox-character-style@4`,
314+
`remark-lint-checkbox-character-style@5`,
315315
compatible with Node.js 16.
316316
317317
## Contribute

packages/remark-lint-checkbox-content-indent/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "remark-lint-checkbox-content-indent",
3-
"version": "4.1.2",
3+
"version": "5.0.0",
44
"description": "remark-lint rule to warn when list item checkboxes are followed by too much whitespace",
55
"license": "MIT",
66
"keywords": [
@@ -36,7 +36,7 @@
3636
"@types/mdast": "^4.0.0",
3737
"mdast-util-phrasing": "^4.0.0",
3838
"pluralize": "^8.0.0",
39-
"unified-lint-rule": "^2.0.0",
39+
"unified-lint-rule": "^3.0.0",
4040
"unist-util-position": "^5.0.0",
4141
"unist-util-visit-parents": "^6.0.0"
4242
},

packages/remark-lint-checkbox-content-indent/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ npm install remark-lint-checkbox-content-indent
5555
In Deno with [`esm.sh`][esm-sh]:
5656

5757
```js
58-
import remarkLintCheckboxContentIndent from 'https://esm.sh/remark-lint-checkbox-content-indent@4'
58+
import remarkLintCheckboxContentIndent from 'https://esm.sh/remark-lint-checkbox-content-indent@5'
5959
```
6060

6161
In browsers with [`esm.sh`][esm-sh]:
6262

6363
```html
6464
<script type="module">
65-
import remarkLintCheckboxContentIndent from 'https://esm.sh/remark-lint-checkbox-content-indent@4?bundle'
65+
import remarkLintCheckboxContentIndent from 'https://esm.sh/remark-lint-checkbox-content-indent@5?bundle'
6666
</script>
6767
```
6868

@@ -221,7 +221,7 @@ versions of Node.js.
221221
When we cut a new major release, we drop support for unmaintained versions of
222222
Node.
223223
This means we try to keep the current release line,
224-
`remark-lint-checkbox-content-indent@4`,
224+
`remark-lint-checkbox-content-indent@5`,
225225
compatible with Node.js 16.
226226

227227
## Contribute

packages/remark-lint-code-block-style/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "remark-lint-code-block-style",
3-
"version": "3.1.2",
3+
"version": "4.0.0",
44
"description": "remark-lint rule to warn when code blocks do not adhere to a given style",
55
"license": "MIT",
66
"keywords": [
@@ -33,7 +33,7 @@
3333
"dependencies": {
3434
"@types/mdast": "^4.0.0",
3535
"mdast-util-phrasing": "^4.0.0",
36-
"unified-lint-rule": "^2.0.0",
36+
"unified-lint-rule": "^3.0.0",
3737
"unist-util-position": "^5.0.0",
3838
"unist-util-visit-parents": "^6.0.0",
3939
"vfile-message": "^4.0.0"

packages/remark-lint-code-block-style/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ npm install remark-lint-code-block-style
6161
In Deno with [`esm.sh`][esm-sh]:
6262

6363
```js
64-
import remarkLintCodeBlockStyle from 'https://esm.sh/remark-lint-code-block-style@3'
64+
import remarkLintCodeBlockStyle from 'https://esm.sh/remark-lint-code-block-style@4'
6565
```
6666

6767
In browsers with [`esm.sh`][esm-sh]:
6868

6969
```html
7070
<script type="module">
71-
import remarkLintCodeBlockStyle from 'https://esm.sh/remark-lint-code-block-style@3?bundle'
71+
import remarkLintCodeBlockStyle from 'https://esm.sh/remark-lint-code-block-style@4?bundle'
7272
</script>
7373
```
7474

@@ -304,7 +304,7 @@ versions of Node.js.
304304
When we cut a new major release, we drop support for unmaintained versions of
305305
Node.
306306
This means we try to keep the current release line,
307-
`remark-lint-code-block-style@3`,
307+
`remark-lint-code-block-style@4`,
308308
compatible with Node.js 16.
309309

310310
## Contribute

packages/remark-lint-definition-case/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "remark-lint-definition-case",
3-
"version": "3.1.2",
3+
"version": "4.0.0",
44
"description": "remark-lint rule to warn when definition labels are not lowercase",
55
"license": "MIT",
66
"keywords": [
@@ -33,7 +33,7 @@
3333
"dependencies": {
3434
"@types/mdast": "^4.0.0",
3535
"mdast-util-phrasing": "^4.0.0",
36-
"unified-lint-rule": "^2.0.0",
36+
"unified-lint-rule": "^3.0.0",
3737
"unist-util-visit-parents": "^6.0.0"
3838
},
3939
"scripts": {},

packages/remark-lint-definition-case/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ npm install remark-lint-definition-case
5656
In Deno with [`esm.sh`][esm-sh]:
5757

5858
```js
59-
import remarkLintDefinitionCase from 'https://esm.sh/remark-lint-definition-case@3'
59+
import remarkLintDefinitionCase from 'https://esm.sh/remark-lint-definition-case@4'
6060
```
6161

6262
In browsers with [`esm.sh`][esm-sh]:
6363

6464
```html
6565
<script type="module">
66-
import remarkLintDefinitionCase from 'https://esm.sh/remark-lint-definition-case@3?bundle'
66+
import remarkLintDefinitionCase from 'https://esm.sh/remark-lint-definition-case@4?bundle'
6767
</script>
6868
```
6969

@@ -194,7 +194,7 @@ versions of Node.js.
194194
When we cut a new major release, we drop support for unmaintained versions of
195195
Node.
196196
This means we try to keep the current release line,
197-
`remark-lint-definition-case@3`,
197+
`remark-lint-definition-case@4`,
198198
compatible with Node.js 16.
199199

200200
## Contribute

0 commit comments

Comments
 (0)