Skip to content

Commit c11a4ff

Browse files
committed
Auto-generated commit
1 parent 298d24c commit c11a4ff

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,7 @@ A total of 24 issues were closed in this release:
590590

591591
<details>
592592

593+
- [`0af16c9`](https://github.com/stdlib-js/stdlib/commit/0af16c9618cb9bf7f5f3c521a8dbfc3e3f640b42) - **style:** resolve lint errors _(by Athan Reines)_
593594
- [`70e9b6c`](https://github.com/stdlib-js/stdlib/commit/70e9b6c1b5b3521412ed4a8fed9ab3de337ab661) - **feat:** add `ndarray/base/pop` [(#8108)](https://github.com/stdlib-js/stdlib/pull/8108) _(by Muhammad Haris, Athan Reines)_
594595
- [`bef69f1`](https://github.com/stdlib-js/stdlib/commit/bef69f1647b16c21cec08955ed3b26b41937ebd2) - **style:** resolve lint errors _(by Athan Reines)_
595596
- [`d3aa7cd`](https://github.com/stdlib-js/stdlib/commit/d3aa7cd53d20216c70ee74a8d4de32a80e97be71) - **feat:** add `ndarray/any` [(#8113)](https://github.com/stdlib-js/stdlib/pull/8113) _(by Muhammad Haris, Athan Reines)_

base/slice-dimension-to/test/test.js

Lines changed: 8 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,8 @@ tape( 'in non-strict mode, the function returns an empty array when an ending in
163161
var stop;
164162
var i;
165163

164+
/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */
165+
166166
values = [
167167
zeros( [ 1 ], { 'dtype': 'float64' } ),
168168
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
@@ -171,6 +171,8 @@ tape( 'in non-strict mode, the function returns an empty array when an ending in
171171
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
172172
];
173173

174+
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */
175+
174176
stop = [
175177
-10,
176178
-20,
@@ -194,6 +196,8 @@ tape( 'the function returns an empty array when an ending index is the first ele
194196
var dim;
195197
var i;
196198

199+
/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */
200+
197201
values = [
198202
zeros( [ 1 ], { 'dtype': 'float64' } ),
199203
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
@@ -202,6 +206,8 @@ tape( 'the function returns an empty array when an ending index is the first ele
202206
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
203207
];
204208

209+
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */
210+
205211
dim = [
206212
0,
207213
1,

0 commit comments

Comments
 (0)