diff --git a/lib/node_modules/@stdlib/ndarray/base/slice-dimension-from/test/test.js b/lib/node_modules/@stdlib/ndarray/base/slice-dimension-from/test/test.js index 3bc69ea08a66..41733596824e 100644 --- a/lib/node_modules/@stdlib/ndarray/base/slice-dimension-from/test/test.js +++ b/lib/node_modules/@stdlib/ndarray/base/slice-dimension-from/test/test.js @@ -16,8 +16,6 @@ * limitations under the License. */ -/* eslint-disable object-curly-newline */ - 'use strict'; // MODULES // @@ -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' } ), @@ -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, @@ -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' } ), @@ -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,