Skip to content

Commit 2abdee4

Browse files
committed
Enable lint rule
1 parent 6aad7cb commit 2abdee4

File tree

10 files changed

+20
-0
lines changed

10 files changed

+20
-0
lines changed

lib/node_modules/@stdlib/complex/cmplx/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ var z = complex( 5.0, 3.0, 'float32' );
5757

5858
## Examples
5959

60+
<!-- eslint no-undef: "error" -->
61+
6062
```javascript
6163
var randu = require( '@stdlib/random/base/randu' );
6264
var round = require( '@stdlib/math/base/special/round' );

lib/node_modules/@stdlib/complex/conj/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ str = v.toString();
5454

5555
## Examples
5656

57+
<!-- eslint no-undef: "error" -->
58+
5759
```javascript
5860
var Complex128 = require( '@stdlib/complex/float64' );
5961
var randu = require( '@stdlib/random/base/randu' );

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,8 @@ To [revive][mdn-json-parse] a `Complex64` number from a [JSON][json] `string`, s
157157

158158
## Examples
159159

160+
<!-- eslint no-undef: "error" -->
161+
160162
```javascript
161163
var Complex64 = require( '@stdlib/complex/float32' );
162164

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,8 @@ To [revive][mdn-json-parse] a `Complex128` number from a [JSON][json] `string`,
157157

158158
## Examples
159159

160+
<!-- eslint no-undef: "error" -->
161+
160162
```javascript
161163
var Complex128 = require( '@stdlib/complex/float64' );
162164

lib/node_modules/@stdlib/complex/imag/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ var im = imag( z );
5050

5151
## Examples
5252

53+
<!-- eslint no-undef: "error" -->
54+
5355
```javascript
5456
var Complex128 = require( '@stdlib/complex/float64' );
5557
var randu = require( '@stdlib/random/base/randu' );

lib/node_modules/@stdlib/complex/real/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ var re = real( z );
5050

5151
## Examples
5252

53+
<!-- eslint no-undef: "error" -->
54+
5355
```javascript
5456
var Complex128 = require( '@stdlib/complex/float64' );
5557
var randu = require( '@stdlib/random/base/randu' );

lib/node_modules/@stdlib/complex/reim/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ out = reim( z );
5555

5656
## Examples
5757

58+
<!-- eslint no-undef: "error" -->
59+
5860
```javascript
5961
var Complex128 = require( '@stdlib/complex/float64' );
6062
var randu = require( '@stdlib/random/base/randu' );

lib/node_modules/@stdlib/complex/reviver-float32/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 [`Complex64`][@stdlib/complex/
5353

5454
## Examples
5555

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

lib/node_modules/@stdlib/complex/reviver-float64/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 [`Complex128`][@stdlib/complex
5353

5454
## Examples
5555

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

lib/node_modules/@stdlib/complex/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 [`Complex128`][@stdlib/complex
5353

5454
## Examples
5555

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

0 commit comments

Comments
 (0)