Skip to content

Commit 18bf1b9

Browse files
AaryaBalwadkarkgryte
authored andcommitted
chore: fix EditorConfig lint errors
PR-URL: stdlib-js#6278 Closes: stdlib-js#6270 Co-authored-by: Athan Reines <[email protected]> Reviewed-by: Athan Reines <[email protected]> Signed-off-by: Athan Reines <[email protected]>
1 parent 7aab855 commit 18bf1b9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/node_modules/@stdlib/lapack/base/dge-trans/test/test.ndarray.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -457,20 +457,20 @@ tape( 'the function supports specifying the strides of the first and second dime
457457
M = 4;
458458
N = 3;
459459

460-
/* eslint-disable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */
460+
/* eslint-disable array-element-newline, no-multi-spaces */
461461

462462
A = new Float64Array([
463-
1, 999, 2, 999, 3, 999,
463+
1, 999, 2, 999, 3, 999,
464464
999, 999, 999, 999, 999, 999,
465-
4, 999, 5, 999, 6, 999,
465+
4, 999, 5, 999, 6, 999,
466466
999, 999, 999, 999, 999, 999,
467-
7, 999, 8, 999, 9, 999,
467+
7, 999, 8, 999, 9, 999,
468468
999, 999, 999, 999, 999, 999,
469-
10, 999, 11, 999, 12, 999,
469+
10, 999, 11, 999, 12, 999,
470470
999, 999, 999, 999, 999, 999
471471
]);
472472

473-
/* eslint-enable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */
473+
/* eslint-enable array-element-newline, no-multi-spaces */
474474

475475
out = new Float64Array( M*N );
476476

0 commit comments

Comments
 (0)