Skip to content

Commit d689d2d

Browse files
authored
chore: propagate node/ -> n/ eslint plugin prefix update across README directives
PR-URL: #11826 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 5f0a55a commit d689d2d

11 files changed

Lines changed: 16 additions & 16 deletions

File tree

lib/node_modules/@stdlib/_tools/eslint/rules/first-unit-test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ tape( 'main export is a function', function test( t ) {
7777

7878
## Examples
7979

80-
<!-- eslint-disable node/no-unpublished-require -->
80+
<!-- eslint-disable n/no-unpublished-require -->
8181

8282
<!-- eslint no-undef: "error" -->
8383

lib/node_modules/@stdlib/_tools/test-cov/tape-istanbul/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ runner( 'test*.js', opts, done );
7575

7676
## Examples
7777

78-
<!-- eslint-disable node/no-path-concat -->
78+
<!-- eslint-disable n/no-path-concat -->
7979

8080
<!-- eslint no-undef: "error" -->
8181

lib/node_modules/@stdlib/array/to-json/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ For guidance on reviving a JSON-serialized typed array, see [`reviver()`][@stdli
8787

8888
- The implementation provides basic support for custom typed arrays and sets the `type` field to the closest known typed array type.
8989

90-
<!-- eslint-disable no-restricted-syntax, no-useless-constructor, new-cap, stdlib/require-globals, node/no-unsupported-features/es-syntax -->
90+
<!-- eslint-disable no-restricted-syntax, no-useless-constructor, new-cap, stdlib/require-globals, n/no-unsupported-features/es-syntax -->
9191

9292
```javascript
9393
class CustomArray extends Float64Array() {

lib/node_modules/@stdlib/assert/is-arrow-function/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var isArrowFunction = require( '@stdlib/assert/is-arrow-function' );
3434

3535
Tests if a `value` is an [`arrow function`][mdn-arrow-function] such as `( a, b ) => a + b`, `x => x`, or `( x ) => { return x*x; }`.
3636

37-
<!-- eslint-disable func-style, no-restricted-syntax, node/no-unsupported-features/es-syntax -->
37+
<!-- eslint-disable func-style, no-restricted-syntax, n/no-unsupported-features/es-syntax -->
3838

3939
```javascript
4040
var beep = () => {
@@ -60,7 +60,7 @@ bool = isArrowFunction( boop );
6060

6161
## Examples
6262

63-
<!-- eslint-disable func-style, no-restricted-syntax, no-empty-function, node/no-unsupported-features/es-syntax -->
63+
<!-- eslint-disable func-style, no-restricted-syntax, no-empty-function, n/no-unsupported-features/es-syntax -->
6464

6565
<!-- eslint no-undef: "error" -->
6666

lib/node_modules/@stdlib/assert/is-class/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var isClass = require( '@stdlib/assert/is-class' );
3434

3535
Tests if a value is a [`class`][mdn-class].
3636

37-
<!-- eslint-disable max-classes-per-file, no-restricted-syntax, node/no-unsupported-features/es-syntax -->
37+
<!-- eslint-disable max-classes-per-file, no-restricted-syntax, n/no-unsupported-features/es-syntax -->
3838

3939
```javascript
4040
var bool = isClass( class Animal {
@@ -68,7 +68,7 @@ bool = isClass( null );
6868

6969
<!-- eslint no-undef: "error" -->
7070

71-
<!-- eslint-disable no-restricted-syntax, no-empty-function, node/no-unsupported-features/es-syntax -->
71+
<!-- eslint-disable no-restricted-syntax, no-empty-function, n/no-unsupported-features/es-syntax -->
7272

7373
```javascript
7474
var isClass = require( '@stdlib/assert/is-class' );

lib/node_modules/@stdlib/assert/is-generator-object/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var isGeneratorObject = require( '@stdlib/assert/is-generator-object' );
3434

3535
Tests if a `value` is a [`generator`][mdn-generator-object] object.
3636

37-
<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
37+
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->
3838

3939
```javascript
4040
function* generateID() {
@@ -63,7 +63,7 @@ bool = isGeneratorObject( {} );
6363

6464
## Examples
6565

66-
<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
66+
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->
6767

6868
<!-- eslint no-undef: "error" -->
6969

lib/node_modules/@stdlib/math/base/tools/continued-fraction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Evaluates the continued fraction described by the supplied `generator` argument.
4949

5050
Using an ES6 [Generator object][es6-generator]:
5151

52-
<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
52+
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->
5353

5454
```javascript
5555
// Continued fraction for (e-1)^(-1):
@@ -171,7 +171,7 @@ function generator() {
171171

172172
## Examples
173173

174-
<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
174+
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->
175175

176176
<!-- eslint no-undef: "error" -->
177177

lib/node_modules/@stdlib/math/base/tools/sum-series/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Computes the sum of the series given by the supplied `generator` argument. `gene
3636

3737
Using an ES6 [Generator object][es6-generator]:
3838

39-
<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
39+
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->
4040

4141
```javascript
4242
var pow = require( '@stdlib/math/base/special/pow' );
@@ -150,7 +150,7 @@ function geometricSeriesClosure( x ) {
150150

151151
## Examples
152152

153-
<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
153+
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->
154154

155155
<!-- eslint no-undef: "error" -->
156156

lib/node_modules/@stdlib/net/http-server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ The function supports the following parameters:
125125

126126
## Examples
127127

128-
<!-- eslint-disable node/no-process-exit -->
128+
<!-- eslint-disable n/no-process-exit -->
129129

130130
<!-- eslint no-undef: "error" -->
131131

lib/node_modules/@stdlib/net/http2-secure-server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ The function supports the following parameters:
157157

158158
## Examples
159159

160-
<!-- eslint-disable node/no-process-exit, node/no-unsupported-features/node-builtins -->
160+
<!-- eslint-disable n/no-process-exit, n/no-unsupported-features/node-builtins -->
161161

162162
<!-- eslint no-undef: "error" -->
163163

0 commit comments

Comments
 (0)