Skip to content

Commit e144ece

Browse files
committed
chore: disable lint rule
--- 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 661748f commit e144ece

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,8 @@ tape( 'the function returns the minimum and maximum values', function test( t )
144144
t.strictEqual( v[ 1 ], float64ToFloat32( 4.2 ), 'returns expected value' );
145145

146146
out = new Float32Array( 2 );
147+
148+
// eslint-disable-next-line max-len
147149
v = minmaxf( -float64ToFloat32( 4.2 ), float64ToFloat32( 3.14 ), out, 1, 0 );
148150
t.strictEqual( v, out, 'returns output array' );
149151
t.strictEqual( v[ 0 ], -float64ToFloat32( 4.2 ), 'returns expected value' );
@@ -182,6 +184,8 @@ tape( 'the function supports providing an output object (typed array)', function
182184
t.strictEqual( v[ 1 ], float64ToFloat32( 4.2 ), 'returns expected value' );
183185

184186
out = new Float32Array( 2 );
187+
188+
// eslint-disable-next-line max-len
185189
v = minmaxf( -float64ToFloat32( 4.2 ), float64ToFloat32( 3.14 ), out, 1, 0 );
186190
t.strictEqual( v, out, 'returns output array' );
187191
t.strictEqual( v[ 0 ], -float64ToFloat32( 4.2 ), 'returns expected value' );
@@ -195,6 +199,8 @@ tape( 'the function supports specifying a stride', function test( t ) {
195199
var val;
196200

197201
out = new Float32Array( 4 );
202+
203+
// eslint-disable-next-line max-len
198204
val = minmaxf( -float64ToFloat32( 4.2 ), float64ToFloat32( 3.14 ), out, 2, 0 );
199205

200206
t.strictEqual( val, out, 'returns output array' );
@@ -211,6 +217,8 @@ tape( 'the function supports specifying an offset', function test( t ) {
211217
var val;
212218

213219
out = new Float32Array( 4 );
220+
221+
// eslint-disable-next-line max-len
214222
val = minmaxf( -float64ToFloat32( 4.2 ), float64ToFloat32( 3.14 ), out, 2, 1 );
215223

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

0 commit comments

Comments
 (0)