Skip to content

Commit 298d24c

Browse files
committed
Auto-generated commit
1 parent 59359e3 commit 298d24c

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
@@ -591,6 +591,7 @@ A total of 24 issues were closed in this release:
591591
<details>
592592

593593
- [`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)_
594+
- [`bef69f1`](https://github.com/stdlib-js/stdlib/commit/bef69f1647b16c21cec08955ed3b26b41937ebd2) - **style:** resolve lint errors _(by Athan Reines)_
594595
- [`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)_
595596
- [`d13a0fc`](https://github.com/stdlib-js/stdlib/commit/d13a0fca7737b8aa0206943ff11a5ca4f0cb3527) - **refactor:** remove unreachable path _(by Athan Reines)_
596597
- [`ce50d3e`](https://github.com/stdlib-js/stdlib/commit/ce50d3ecca395ef29f3883a70d8fbf1b3e7f38c1) - **docs:** fix grammar _(by Athan Reines)_

base/slice-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 //
@@ -142,6 +140,8 @@ tape( 'in non-strict mode, the function returns an empty array when an ending in
142140
var stop;
143141
var i;
144142

143+
/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */
144+
145145
values = [
146146
zeros( [ 1 ], { 'dtype': 'float64' } ),
147147
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
@@ -150,6 +150,8 @@ tape( 'in non-strict mode, the function returns an empty array when an ending in
150150
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
151151
];
152152

153+
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */
154+
153155
stop = [
154156
[ -10 ],
155157
[ null, -20 ],
@@ -172,6 +174,8 @@ tape( 'the function returns an empty array when an ending index is the first ele
172174
var stop;
173175
var i;
174176

177+
/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */
178+
175179
values = [
176180
zeros( [ 1 ], { 'dtype': 'float64' } ),
177181
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
@@ -180,6 +184,8 @@ tape( 'the function returns an empty array when an ending index is the first ele
180184
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
181185
];
182186

187+
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */
188+
183189
stop = [
184190
[ 0 ],
185191
[ null, 0 ],

0 commit comments

Comments
 (0)