Skip to content

Commit b22cf28

Browse files
vsemozhetbytaddaleax
authored andcommitted
tools: update: [email protected]
* Remove pinning of eslint-plugin-markdown An issue affecting Node.js source has been fixed in eslint-plugin-markdown so we don't need to pin it to beta-4 anymore. Refs: eslint/markdown#69 * Update eslint-plugin-markdown up to 1.0.0-beta.7 * Fix docs for [email protected] PR-URL: #14047 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 02d6fb6 commit b22cf28

File tree

169 files changed

+8762
-22351
lines changed

Some content is hidden

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

169 files changed

+8762
-22351
lines changed

doc/api/dns.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ section if a custom port is used.
6565

6666
For example:
6767

68-
<!-- eslint-disable -->
68+
<!-- eslint-disable semi-->
6969
```js
7070
[
7171
'4.4.4.4',
@@ -314,7 +314,7 @@ function will contain an array of objects with the following properties:
314314

315315
For example:
316316

317-
<!-- eslint-disable -->
317+
<!-- eslint-skip -->
318318
```js
319319
{
320320
flags: 's',
@@ -374,7 +374,7 @@ be an object with the following properties:
374374
* `expire`
375375
* `minttl`
376376

377-
<!-- eslint-disable -->
377+
<!-- eslint-skip -->
378378
```js
379379
{
380380
nsname: 'ns.example.com',
@@ -405,7 +405,7 @@ be an array of objects with the following properties:
405405
* `port`
406406
* `name`
407407

408-
<!-- eslint-disable -->
408+
<!-- eslint-skip -->
409409
```js
410410
{
411411
priority: 10,
@@ -459,12 +459,12 @@ will be present on the object:
459459

460460
Here is a example of the `ret` object passed to the callback:
461461

462-
<!-- eslint-disable -->
462+
<!-- eslint-disable semi -->
463463
```js
464464
[ { type: 'A', address: '127.0.0.1', ttl: 299 },
465465
{ type: 'CNAME', value: 'example.com' },
466466
{ type: 'MX', exchange: 'alt4.aspmx.l.example.com', priority: 50 },
467-
{ type: 'NS', value: 'ns1.example.com', type: 'NS' },
467+
{ type: 'NS', value: 'ns1.example.com' },
468468
{ type: 'TXT', entries: [ 'v=spf1 include:_spf.example.com ~all' ] },
469469
{ type: 'SOA',
470470
nsname: 'ns1.example.com',

doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ user is able to stream data.
1212

1313
HTTP message headers are represented by an object like this:
1414

15-
<!-- eslint-disable -->
15+
<!-- eslint-skip -->
1616
```js
1717
{ 'content-length': '123',
1818
'content-type': 'text/plain',

doc/api/os.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ The properties available on the assigned network address object include:
254254
* `scopeid` {number} The numeric IPv6 scope ID (only specified when `family`
255255
is `IPv6`)
256256

257-
<!-- eslint-disable -->
257+
<!-- eslint-skip -->
258258
```js
259259
{
260260
lo: [

doc/api/process.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ running the `./configure` script.
528528

529529
An example of the possible output looks like:
530530

531-
<!-- eslint-disable -->
531+
<!-- eslint-skip -->
532532
```js
533533
{
534534
target_defaults:
@@ -792,7 +792,7 @@ See environ(7).
792792

793793
An example of this object looks like:
794794

795-
<!-- eslint-disable -->
795+
<!-- eslint-skip -->
796796
```js
797797
{
798798
TERM: 'xterm-256color',
@@ -1224,7 +1224,7 @@ console.log(process.memoryUsage());
12241224

12251225
Will generate:
12261226

1227-
<!-- eslint-disable -->
1227+
<!-- eslint-skip -->
12281228
```js
12291229
{
12301230
rss: 4935680,
@@ -1396,7 +1396,7 @@ tarball.
13961396

13971397
For example:
13981398

1399-
<!-- eslint-disable -->
1399+
<!-- eslint-skip -->
14001400
```js
14011401
{
14021402
name: 'node',
@@ -1758,7 +1758,7 @@ console.log(process.versions);
17581758

17591759
Will generate an object similar to:
17601760

1761-
<!-- eslint-disable -->
1761+
<!-- eslint-skip -->
17621762
```js
17631763
{
17641764
http_parser: '2.3.0',

doc/api/querystring.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ collection of key and value pairs.
5959

6060
For example, the query string `'foo=bar&abc=xyz&abc=123'` is parsed into:
6161

62-
<!-- eslint-disable -->
62+
<!-- eslint-skip -->
6363
```js
6464
{
6565
foo: 'bar',

doc/api/repl.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The following special commands are supported by all REPL instances:
4040
`> .load ./file/to/load.js`
4141
* `.editor` - Enter editor mode (`<ctrl>-D` to finish, `<ctrl>-C` to cancel)
4242

43-
<!-- eslint-disable -->
43+
<!-- eslint-skip -->
4444
```js
4545
> .editor
4646
// Entering editor mode (^D to finish, ^C to cancel)
@@ -76,7 +76,7 @@ evaluation function when the `repl.REPLServer` instance is created.
7676

7777
The default evaluator supports direct evaluation of JavaScript expressions:
7878

79-
<!-- eslint-disable -->
79+
<!-- eslint-skip -->
8080
```js
8181
> 1 + 1
8282
2
@@ -105,7 +105,7 @@ repl.start('> ').context.m = msg;
105105

106106
Properties in the `context` object appear as local within the REPL:
107107

108-
<!-- eslint-disable -->
108+
<!-- eslint-skip -->
109109
```js
110110
$ node repl_test.js
111111
> m
@@ -135,7 +135,7 @@ REPL environment when used. For instance, unless otherwise declared as a
135135
global or scoped variable, the input `fs` will be evaluated on-demand as
136136
`global.fs = require('fs')`.
137137

138-
<!-- eslint-disable -->
138+
<!-- eslint-skip -->
139139
```js
140140
> fs.createReadStream('./some/file');
141141
```
@@ -146,7 +146,7 @@ The default evaluator will, by default, assign the result of the most recently
146146
evaluated expression to the special variable `_` (underscore).
147147
Explicitly setting `_` to a value will disable this behavior.
148148

149-
<!-- eslint-disable -->
149+
<!-- eslint-skip -->
150150
```js
151151
> [ 'a', 'b', 'c' ]
152152
[ 'a', 'b', 'c' ]
@@ -293,7 +293,7 @@ r.on('reset', initializeContext);
293293
When this code is executed, the global `'m'` variable can be modified but then
294294
reset to its initial value using the `.clear` command:
295295

296-
<!-- eslint-disable -->
296+
<!-- eslint-skip -->
297297
```js
298298
$ ./node example.js
299299
> m
@@ -443,7 +443,7 @@ Node.js itself uses the `repl` module to provide its own interactive interface
443443
for executing JavaScript. This can be used by executing the Node.js binary
444444
without passing any arguments (or by passing the `-i` argument):
445445

446-
<!-- eslint-disable -->
446+
<!-- eslint-skip -->
447447
```js
448448
$ node
449449
> const a = [1, 2, 3];

doc/api/v8.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ swapped out by the operating system.
116116

117117
For example:
118118

119-
<!-- eslint-disable -->
119+
<!-- eslint-skip -->
120120
```js
121121
{
122122
total_heap_size: 7326976,

tools/eslint/node_modules/ccount/history.md

-11
This file was deleted.

tools/eslint/node_modules/ccount/index.js

-46
This file was deleted.

tools/eslint/node_modules/ccount/readme.md

-57
This file was deleted.

0 commit comments

Comments
 (0)