Skip to content

Commit c273934

Browse files
committed
Enable lint rule
1 parent f823901 commit c273934

File tree

19 files changed

+38
-0
lines changed

19 files changed

+38
-0
lines changed

lib/node_modules/@stdlib/regexp/basename-posix/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ var base = RE_BASENAME_POSIX.exec( 'foo/bar/index.js' )[ 1 ];
2727

2828
## Examples
2929

30+
<!-- eslint no-undef: "error" -->
31+
3032
```javascript
3133
var RE_BASENAME_POSIX = require( '@stdlib/regexp/basename-posix' );
3234

lib/node_modules/@stdlib/regexp/basename-windows/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ var base = RE_BASENAME_WINDOWS.exec( 'foo\\bar\\index.js' )[ 1 ];
2727

2828
## Examples
2929

30+
<!-- eslint no-undef: "error" -->
31+
3032
```javascript
3133
var RE_BASENAME_WINDOWS = require( '@stdlib/regexp/basename-windows' );
3234

lib/node_modules/@stdlib/regexp/basename/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ var base = RE_BASENAME.win32.exec( 'C:\\foo\\bar\\index.js' )[ 1 ];
5050

5151
## Examples
5252

53+
<!-- eslint no-undef: "error" -->
54+
5355
```javascript
5456
var RE_BASENAME = require( '@stdlib/regexp/basename' );
5557

lib/node_modules/@stdlib/regexp/color-hexadecimal/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ bool = RE_COLOR_HEXADECIMAL.test( '000' );
5454

5555
## Examples
5656

57+
<!-- eslint no-undef: "error" -->
58+
5759
```javascript
5860
var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
5961
var RE_COLOR_HEXADECIMAL = require( '@stdlib/regexp/color-hexadecimal' );

lib/node_modules/@stdlib/regexp/decimal-number/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ out = RE_DECIMAL_NUMBER.exec( '' );
6363

6464
## Examples
6565

66+
<!-- eslint no-undef: "error" -->
67+
6668
```javascript
6769
var RE_DECIMAL_NUMBER = require( '@stdlib/regexp/decimal-number' );
6870

lib/node_modules/@stdlib/regexp/dirname-posix/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ var dir = RE_DIRNAME_POSIX.exec( 'foo/bar/index.js' )[ 1 ];
2727

2828
## Examples
2929

30+
<!-- eslint no-undef: "error" -->
31+
3032
```javascript
3133
var RE_DIRNAME_POSIX = require( '@stdlib/regexp/dirname-posix' );
3234

lib/node_modules/@stdlib/regexp/dirname-windows/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ var dir = RE_DIRNAME_WINDOWS.exec( 'foo\\bar\\index.js' )[ 1 ];
2727

2828
## Examples
2929

30+
<!-- eslint no-undef: "error" -->
31+
3032
```javascript
3133
var RE_DIRNAME_WINDOWS = require( '@stdlib/regexp/dirname-windows' );
3234

lib/node_modules/@stdlib/regexp/dirname/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ var dir = RE_DIRNAME.win32.exec( 'C:\\foo\\bar\\index.js' )[ 1 ];
5050

5151
## Examples
5252

53+
<!-- eslint no-undef: "error" -->
54+
5355
```javascript
5456
var RE_DIRNAME = require( '@stdlib/regexp/dirname' );
5557

lib/node_modules/@stdlib/regexp/eol/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ bool = RE_EOL.test( '\\r\\n' );
3333

3434
## Examples
3535

36+
<!-- eslint no-undef: "error" -->
37+
3638
```javascript
3739
var RE_EOL = require( '@stdlib/regexp/eol' );
3840

lib/node_modules/@stdlib/regexp/extended-length-path/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ var bool = RE_EXTENDED_LENGTH_PATH.test( '\\\\?\\C:\\foo\\bar' );
2727

2828
## Examples
2929

30+
<!-- eslint no-undef: "error" -->
31+
3032
```javascript
3133
var RE_EXTENDED_LENGTH_PATH = require( '@stdlib/regexp/extended-length-path' );
3234

0 commit comments

Comments
 (0)