Skip to content

Commit 62fc9fa

Browse files
committed
Switch to custom no-redeclare rule
1 parent 7ecd71d commit 62fc9fa

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

tools/benchmarks/browser-build/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var build = require( '@stdlib/tools/benchmarks/browser-build' );
2424

2525
Given a `root` directory from which to search for benchmarks and an output directory, build assets for running benchmarks in a web browser.
2626

27-
<!-- eslint-disable no-redeclare -->
27+
<!-- eslint-disable stdlib/no-redeclare -->
2828

2929
```javascript
3030
var cwd = require( '@stdlib/utils/cwd' );
@@ -56,7 +56,7 @@ The function accepts the following `options`:
5656

5757
To provide an alternative glob pattern, set the `pattern` option.
5858

59-
<!-- eslint-disable no-redeclare -->
59+
<!-- eslint-disable stdlib/no-redeclare -->
6060

6161
```javascript
6262
var cwd = require( '@stdlib/utils/cwd' );
@@ -84,7 +84,7 @@ function clbk( error, bool ) {
8484

8585
To mount a bundle on a URL path, set the `mount`option.
8686

87-
<!-- eslint-disable no-redeclare -->
87+
<!-- eslint-disable stdlib/no-redeclare -->
8888

8989
```javascript
9090
var cwd = require( '@stdlib/utils/cwd' );
@@ -128,7 +128,7 @@ function clbk( error, bool ) {
128128

129129
## Examples
130130

131-
<!-- eslint-disable no-redeclare -->
131+
<!-- eslint-disable stdlib/no-redeclare -->
132132

133133
```javascript
134134
var join = require( 'path' ).join;

tools/benchmarks/bundle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function clbk( error, bundle ) {
102102

103103
## Examples
104104

105-
<!-- eslint-disable no-redeclare -->
105+
<!-- eslint-disable stdlib/no-redeclare -->
106106

107107
```javascript
108108
var join = require( 'path' ).join;

tools/test/browser-build/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var build = require( '@stdlib/tools/test/browser-build' );
2424

2525
Given a `root` directory from which to search for tests and an output directory, build assets for running tests in a web browser.
2626

27-
<!-- eslint-disable no-redeclare -->
27+
<!-- eslint-disable stdlib/no-redeclare -->
2828

2929
```javascript
3030
var cwd = require( '@stdlib/utils/cwd' );
@@ -56,7 +56,7 @@ The function accepts the following `options`:
5656

5757
To provide an alternative glob pattern, set the `pattern` option.
5858

59-
<!-- eslint-disable no-redeclare -->
59+
<!-- eslint-disable stdlib/no-redeclare -->
6060

6161
```javascript
6262
var cwd = require( '@stdlib/utils/cwd' );
@@ -84,7 +84,7 @@ function clbk( error, bool ) {
8484

8585
To mount a bundle on a URL path, set the `mount`option.
8686

87-
<!-- eslint-disable no-redeclare -->
87+
<!-- eslint-disable stdlib/no-redeclare -->
8888

8989
```javascript
9090
var cwd = require( '@stdlib/utils/cwd' );
@@ -128,7 +128,7 @@ function clbk( error, bool ) {
128128

129129
## Examples
130130

131-
<!-- eslint-disable no-redeclare -->
131+
<!-- eslint-disable stdlib/no-redeclare -->
132132

133133
```javascript
134134
var join = require( 'path' ).join;

tools/test/bundle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function clbk( error, bundle ) {
102102

103103
## Examples
104104

105-
<!-- eslint-disable no-redeclare -->
105+
<!-- eslint-disable stdlib/no-redeclare -->
106106

107107
```javascript
108108
var join = require( 'path' ).join;

0 commit comments

Comments
 (0)