Skip to content

Commit 6f521b4

Browse files
committed
Enable lint rule
1 parent 3077143 commit 6f521b4

File tree

18 files changed

+36
-0
lines changed

18 files changed

+36
-0
lines changed

lib/node_modules/@stdlib/array/buffer/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,8 @@ var nbytes = b2.byteLength;
158158

159159
## Examples
160160

161+
<!-- eslint no-undef: "error" -->
162+
161163
```javascript
162164
var randu = require( '@stdlib/random/base/randu' );
163165
var Float64Array = require( '@stdlib/array/float64' );

lib/node_modules/@stdlib/array/convert/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ The function supports the following data types:
6161

6262
## Examples
6363

64+
<!-- eslint no-undef: "error" -->
65+
6466
```javascript
6567
var dtypes = require( '@stdlib/array/dtypes' );
6668
var randu = require( '@stdlib/random/base/randu' );

lib/node_modules/@stdlib/array/ctors/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ var ctor = ctors( 'float' );
6767

6868
## Examples
6969

70+
<!-- eslint no-undef: "error" -->
71+
7072
```javascript
7173
var dtypes = require( '@stdlib/array/dtypes' );
7274
var ctors = require( '@stdlib/array/ctors' );

lib/node_modules/@stdlib/array/dtypes/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ The output `array` contains the following data types:
6060

6161
## Examples
6262

63+
<!-- eslint no-undef: "error" -->
64+
6365
```javascript
6466
var indexOf = require( '@stdlib/utils/index-of' );
6567
var dtypes = require( '@stdlib/array/dtypes' );

lib/node_modules/@stdlib/array/float32/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,8 @@ TODO: add methods
181181

182182
## Examples
183183

184+
<!-- eslint no-undef: "error" -->
185+
184186
```javascript
185187
var randu = require( '@stdlib/random/base/randu' );
186188
var ctor = require( '@stdlib/array/float32' );

lib/node_modules/@stdlib/array/float64/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,8 @@ TODO: add methods
181181

182182
## Examples
183183

184+
<!-- eslint no-undef: "error" -->
185+
184186
```javascript
185187
var randu = require( '@stdlib/random/base/randu' );
186188
var ctor = require( '@stdlib/array/float64' );

lib/node_modules/@stdlib/array/int16/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,8 @@ TODO: add methods
181181

182182
## Examples
183183

184+
<!-- eslint no-undef: "error" -->
185+
184186
```javascript
185187
var randu = require( '@stdlib/random/base/randu' );
186188
var round = require( '@stdlib/math/base/special/round' );

lib/node_modules/@stdlib/array/int32/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,8 @@ TODO: add methods
181181

182182
## Examples
183183

184+
<!-- eslint no-undef: "error" -->
185+
184186
```javascript
185187
var randu = require( '@stdlib/random/base/randu' );
186188
var round = require( '@stdlib/math/base/special/round' );

lib/node_modules/@stdlib/array/int8/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,8 @@ TODO: add methods
181181

182182
## Examples
183183

184+
<!-- eslint no-undef: "error" -->
185+
184186
```javascript
185187
var randu = require( '@stdlib/random/base/randu' );
186188
var round = require( '@stdlib/math/base/special/round' );

lib/node_modules/@stdlib/array/reviver/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ For details on the JSON serialization format, see [`toJSON()`][@stdlib/array/to-
5353

5454
## Examples
5555

56+
<!-- eslint no-undef: "error" -->
57+
5658
```javascript
5759
var Float64Array = require( '@stdlib/array/float64' );
5860
var parseJSON = require( '@stdlib/utils/parse-json' );

0 commit comments

Comments
 (0)