Skip to content

Commit 03ebded

Browse files
committed
Fix lint errors
1 parent 56e1d05 commit 03ebded

File tree

7 files changed

+3
-9
lines changed

7 files changed

+3
-9
lines changed

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-leading-description-sentence/test/test.js

-1
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,3 @@ tape( 'the function does not validate non-JSDoc comments', function test( t ) {
8484
}
8585
t.end();
8686
});
87-

lib/node_modules/@stdlib/_tools/tests/html/test/test.validate.js

-1
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,3 @@ tape( 'the function ignores unrecognized/unsupported options', function test( t
144144
t.deepEqual( options, {}, 'does not set unrecognized options' );
145145
t.end();
146146
});
147-

lib/node_modules/@stdlib/assert/is-finite/lib/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable stdlib/no-redeclare */
20-
2119
'use strict';
2220

2321
/**

lib/node_modules/@stdlib/assert/is-nonnegative-integer-array/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var arrayfun = require( '@stdlib/assert/tools/array-like-function' );
6060

6161
// VARIABLES //
6262

63-
var isPrimitiveArray = arrayfun( isNonNegativeInteger.isPrimitive )
63+
var isPrimitiveArray = arrayfun( isNonNegativeInteger.isPrimitive );
6464
var isObjectArray = arrayfun( isNonNegativeInteger.isObject );
6565

6666

lib/node_modules/@stdlib/assert/is-nonpositive-integer-array/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var arrayfun = require( '@stdlib/assert/tools/array-like-function' );
6060

6161
// VARIABLES //
6262

63-
var isPrimitiveArray = arrayfun( isNonPositiveInteger.isPrimitive )
63+
var isPrimitiveArray = arrayfun( isNonPositiveInteger.isPrimitive );
6464
var isObjectArray = arrayfun( isNonPositiveInteger.isObject );
6565

6666

lib/node_modules/@stdlib/assert/is-positive-integer-array/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var arrayfun = require( '@stdlib/assert/tools/array-like-function' );
6060

6161
// VARIABLES //
6262

63-
var isPrimitiveArray = arrayfun( isPositiveInteger.isPrimitive )
63+
var isPrimitiveArray = arrayfun( isPositiveInteger.isPrimitive );
6464
var isObjectArray = arrayfun( isPositiveInteger.isObject );
6565

6666

lib/node_modules/@stdlib/utils/object-inverse-by/lib/main.js

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable callback-return */
20-
2119
'use strict';
2220

2321
// MODULES //

0 commit comments

Comments
 (0)