Skip to content

Commit d87c3db

Browse files
committed
Disable lint rules
1 parent f2392ca commit d87c3db

File tree

1 file changed

+8
-0
lines changed
  • lib/node_modules/@stdlib/assert/is-negative-number-array

1 file changed

+8
-0
lines changed

lib/node_modules/@stdlib/assert/is-negative-number-array/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ var isNegativeNumberArray = require( '@stdlib/assert/is-negative-number-array' )
1515

1616
Tests if a `value` is an array-like object containing __only__ negative numbers.
1717

18+
<!-- eslint-disable no-new-wrappers -->
19+
1820
``` javascript
1921
var bool = isNegativeNumberArray( [ -3.0, new Number(-3.0) ] );
2022
// returns true
@@ -27,6 +29,8 @@ bool = isNegativeNumberArray( [ -3.0, '-3.0' ] );
2729

2830
Tests if a `value` is an array-like object `array` containing __only__ primitive negative numbers.
2931

32+
<!-- eslint-disable no-new-wrappers -->
33+
3034
``` javascript
3135
var bool = isNegativeNumberArray.primitives( [ -1.0, -5.0, -10.0 ] );
3236
// returns true
@@ -39,6 +43,8 @@ bool = isNegativeNumberArray.primitives( [ -3.0, new Number(-1.0) ] );
3943

4044
Tests if a `value` is an array-like object `array` containing __only__ object negative numbers.
4145

46+
<!-- eslint-disable no-new-wrappers, max-len -->
47+
4248
``` javascript
4349
var bool = isNegativeNumberArray.objects( [ new Number(-1.0), new Number(-1.0) ] );
4450
// returns true
@@ -56,6 +62,8 @@ bool = isNegativeNumberArray.objects( [ -1.0, -5.0, -10.0 ] );
5662

5763
## Examples
5864

65+
<!-- eslint-disable no-new-wrappers -->
66+
5967
``` javascript
6068
var isNegativeNumberArray = require( '@stdlib/assert/is-negative-number-array' );
6169

0 commit comments

Comments
 (0)