Skip to content

Commit e71d210

Browse files
committed
chore: disable lint rule at the top
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent e144ece commit e71d210

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

lib/node_modules/@stdlib/math/base/special/minmaxf/test/test.assign.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19+
/* eslint-disable max-len */
20+
1921
'use strict';
2022

2123
// MODULES //
@@ -144,8 +146,6 @@ tape( 'the function returns the minimum and maximum values', function test( t )
144146
t.strictEqual( v[ 1 ], float64ToFloat32( 4.2 ), 'returns expected value' );
145147

146148
out = new Float32Array( 2 );
147-
148-
// eslint-disable-next-line max-len
149149
v = minmaxf( -float64ToFloat32( 4.2 ), float64ToFloat32( 3.14 ), out, 1, 0 );
150150
t.strictEqual( v, out, 'returns output array' );
151151
t.strictEqual( v[ 0 ], -float64ToFloat32( 4.2 ), 'returns expected value' );
@@ -184,8 +184,6 @@ tape( 'the function supports providing an output object (typed array)', function
184184
t.strictEqual( v[ 1 ], float64ToFloat32( 4.2 ), 'returns expected value' );
185185

186186
out = new Float32Array( 2 );
187-
188-
// eslint-disable-next-line max-len
189187
v = minmaxf( -float64ToFloat32( 4.2 ), float64ToFloat32( 3.14 ), out, 1, 0 );
190188
t.strictEqual( v, out, 'returns output array' );
191189
t.strictEqual( v[ 0 ], -float64ToFloat32( 4.2 ), 'returns expected value' );
@@ -199,8 +197,6 @@ tape( 'the function supports specifying a stride', function test( t ) {
199197
var val;
200198

201199
out = new Float32Array( 4 );
202-
203-
// eslint-disable-next-line max-len
204200
val = minmaxf( -float64ToFloat32( 4.2 ), float64ToFloat32( 3.14 ), out, 2, 0 );
205201

206202
t.strictEqual( val, out, 'returns output array' );
@@ -217,8 +213,6 @@ tape( 'the function supports specifying an offset', function test( t ) {
217213
var val;
218214

219215
out = new Float32Array( 4 );
220-
221-
// eslint-disable-next-line max-len
222216
val = minmaxf( -float64ToFloat32( 4.2 ), float64ToFloat32( 3.14 ), out, 2, 1 );
223217

224218
t.strictEqual( val, out, 'returns output array' );

0 commit comments

Comments
 (0)