Skip to content

Commit 88af477

Browse files
chore: address Javascript lint errors
PR-URL: #8193 Closes: #8189 Co-authored-by: Athan Reines <[email protected]> Reviewed-by: Athan Reines <[email protected]>
1 parent 9d84704 commit 88af477

File tree

1 file changed

+7
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/base/slice-dimension-from/test

1 file changed

+7
-2
lines changed

lib/node_modules/@stdlib/ndarray/base/slice-dimension-from/test/test.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable object-curly-newline */
20-
2119
'use strict';
2220

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

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

173+
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */
174+
174175
start = [
175176
10,
176177
20,
@@ -194,6 +195,8 @@ tape( 'in non-strict mode, the function returns an empty array when a starting i
194195
var dim;
195196
var i;
196197

198+
/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */
199+
197200
values = [
198201
zeros( [ 1 ], { 'dtype': 'float64' } ),
199202
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
@@ -202,6 +205,8 @@ tape( 'in non-strict mode, the function returns an empty array when a starting i
202205
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
203206
];
204207

208+
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */
209+
205210
dim = [
206211
0,
207212
1,

0 commit comments

Comments
 (0)