We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aab855 commit 18bf1b9Copy full SHA for 18bf1b9
lib/node_modules/@stdlib/lapack/base/dge-trans/test/test.ndarray.js
@@ -457,20 +457,20 @@ tape( 'the function supports specifying the strides of the first and second dime
457
M = 4;
458
N = 3;
459
460
- /* eslint-disable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */
+ /* eslint-disable array-element-newline, no-multi-spaces */
461
462
A = new Float64Array([
463
- 1, 999, 2, 999, 3, 999,
+ 1, 999, 2, 999, 3, 999,
464
999, 999, 999, 999, 999, 999,
465
- 4, 999, 5, 999, 6, 999,
+ 4, 999, 5, 999, 6, 999,
466
467
- 7, 999, 8, 999, 9, 999,
+ 7, 999, 8, 999, 9, 999,
468
469
- 10, 999, 11, 999, 12, 999,
+ 10, 999, 11, 999, 12, 999,
470
999, 999, 999, 999, 999, 999
471
]);
472
473
- /* eslint-enable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */
+ /* eslint-enable array-element-newline, no-multi-spaces */
474
475
out = new Float64Array( M*N );
476
0 commit comments