Skip to content

Commit

Permalink
doc: remove ESLint comments which were breaking the CJS/ESM toggles
Browse files Browse the repository at this point in the history
PR-URL: #40408
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
  • Loading branch information
Mark Skelton authored and targos committed Oct 13, 2021
1 parent 85b7385 commit dc7291d
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions doc/api/assert.md
Expand Up @@ -956,7 +956,6 @@ function. See [`assert.throws()`][] for more details.
Besides the async nature to await the completion behaves identically to
[`assert.doesNotThrow()`][].

<!-- eslint-disable no-restricted-syntax -->
```mjs
import assert from 'assert/strict';

Expand All @@ -981,7 +980,6 @@ const assert = require('assert/strict');
})();
```

<!-- eslint-disable no-restricted-syntax -->
```mjs
import assert from 'assert/strict';

Expand All @@ -991,7 +989,6 @@ assert.doesNotReject(Promise.reject(new TypeError('Wrong value')))
});
```

<!-- eslint-disable no-restricted-syntax -->
```cjs
const assert = require('assert/strict');

Expand Down Expand Up @@ -1040,7 +1037,6 @@ function. See [`assert.throws()`][] for more details.
The following, for instance, will throw the [`TypeError`][] because there is no
matching error type in the assertion:

<!-- eslint-disable no-restricted-syntax -->
```mjs
import assert from 'assert/strict';

Expand All @@ -1052,7 +1048,6 @@ assert.doesNotThrow(
);
```

<!-- eslint-disable no-restricted-syntax -->
```cjs
const assert = require('assert/strict');

Expand All @@ -1067,7 +1062,6 @@ assert.doesNotThrow(
However, the following will result in an [`AssertionError`][] with the message
'Got unwanted exception...':

<!-- eslint-disable no-restricted-syntax -->
```mjs
import assert from 'assert/strict';

Expand All @@ -1079,7 +1073,6 @@ assert.doesNotThrow(
);
```

<!-- eslint-disable no-restricted-syntax -->
```cjs
const assert = require('assert/strict');

Expand All @@ -1095,7 +1088,6 @@ If an [`AssertionError`][] is thrown and a value is provided for the `message`
parameter, the value of `message` will be appended to the [`AssertionError`][]
message:

<!-- eslint-disable no-restricted-syntax -->
```mjs
import assert from 'assert/strict';

Expand All @@ -1109,7 +1101,6 @@ assert.doesNotThrow(
// Throws: AssertionError: Got unwanted exception: Whoops
```

<!-- eslint-disable no-restricted-syntax -->
```cjs
const assert = require('assert/strict');

Expand Down Expand Up @@ -2338,7 +2329,6 @@ message as the thrown error message is going to result in an
`ERR_AMBIGUOUS_ARGUMENT` error. Please read the example below carefully if using
a string as the second argument gets considered:

<!-- eslint-disable no-restricted-syntax -->
```mjs
import assert from 'assert/strict';

Expand Down Expand Up @@ -2375,7 +2365,6 @@ assert.throws(throwingFirst, /Second$/);
// AssertionError [ERR_ASSERTION]
```

<!-- eslint-disable no-restricted-syntax -->
```cjs
const assert = require('assert/strict');

Expand Down

0 comments on commit dc7291d

Please sign in to comment.