Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
* limitations under the License.
*/

/* eslint-disable object-curly-newline */

'use strict';

// MODULES //
Expand Down Expand Up @@ -163,6 +161,7 @@ tape( 'in non-strict mode, the function returns an empty array when a starting i
var start;
var i;

/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */
values = [
zeros( [ 1 ], { 'dtype': 'float64' } ),
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
Expand All @@ -171,6 +170,8 @@ tape( 'in non-strict mode, the function returns an empty array when a starting i
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
];

/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */

start = [
10,
20,
Expand All @@ -194,6 +195,8 @@ tape( 'in non-strict mode, the function returns an empty array when a starting i
var dim;
var i;

/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */

values = [
zeros( [ 1 ], { 'dtype': 'float64' } ),
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
Expand All @@ -202,6 +205,8 @@ tape( 'in non-strict mode, the function returns an empty array when a starting i
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
];

/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */

dim = [
0,
1,
Expand Down