Skip to content
Merged
Changes from 5 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,8 @@
var start;
var i;

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

Check failure on line 165 in lib/node_modules/@stdlib/ndarray/base/slice-dimension-from/test/test.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Trailing spaces not allowed
values = [
zeros( [ 1 ], { 'dtype': 'float64' } ),
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
Expand All @@ -171,6 +171,8 @@
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 +196,8 @@
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 +206,8 @@
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
];

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

dim = [
0,
1,
Expand Down
Loading