Skip to content

Commit fc9ba3a

Browse files
committed
Revert "chore: fix EditorConfig lint errors (issue stdlib-js#7335"
This reverts commit 9ff3350.
1 parent 9ff3350 commit fc9ba3a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
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 */
460+
/* eslint-disable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */
461461

462462
A = new Float32Array([
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 */
473+
/* eslint-enable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */
474474

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

0 commit comments

Comments
 (0)