Skip to content

Commit c76f7bd

Browse files
committed
Auto-generated commit
1 parent d3377ca commit c76f7bd

File tree

11 files changed

+16
-15
lines changed

11 files changed

+16
-15
lines changed

CHANGELOG.md

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

261261
<details>
262262

263+
- [`b721461`](https://github.com/stdlib-js/stdlib/commit/b721461895b04dd66f0915c76347244a7cc56148) - **docs:** revert style changes _(by Athan Reines)_
263264
- [`3024bb3`](https://github.com/stdlib-js/stdlib/commit/3024bb37f70bf55295d9c4bf81107ff57c15ff8a) - **docs:** fix section comments and lint errors in `array` and `assert` READMEs _(by Philipp Burckhardt)_
264265
- [`5cad666`](https://github.com/stdlib-js/stdlib/commit/5cad666695971ba8af5bc2392893d1f32687a1f1) - **bench:** refactor to use string interpolation in `array/empty-like` [(#10484)](https://github.com/stdlib-js/stdlib/pull/10484) _(by Aman Singh)_
265266
- [`05e2a72`](https://github.com/stdlib-js/stdlib/commit/05e2a7238d6385111152d041b60e1f27d478db97) - **bench:** refactor to use string interpolation in `array/fixed-endian-float32` [(#10486)](https://github.com/stdlib-js/stdlib/pull/10486) _(by Aman Singh)_

base/assert/is-accessor-array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var bool = isAccessorArray( arr );
7171

7272
## Examples
7373

74-
<!-- eslint-disable object-curly-newline -->
74+
<!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
7575

7676
<!-- eslint no-undef: "error" -->
7777

@@ -125,7 +125,7 @@ bool = isAccessorArray( new Uint8Array( 10 ) );
125125
bool = isAccessorArray( new Uint8ClampedArray( 10 ) );
126126
// returns false
127127

128-
bool = isAccessorArray({ 'length': 0 });
128+
bool = isAccessorArray( { 'length': 0 } );
129129
// returns false
130130
```
131131

base/assert/is-accessor-array/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable object-curly-newline */
19+
/* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing */
2020

2121
'use strict';
2222

base/assert/is-booleanarray/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var bool = isBooleanArray( arr );
6666

6767
## Examples
6868

69-
<!-- eslint-disable object-curly-newline -->
69+
<!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
7070

7171
<!-- eslint no-undef: "error" -->
7272

@@ -124,7 +124,7 @@ bool = isBooleanArray( new Uint8Array( 10 ) );
124124
bool = isBooleanArray( new Uint8ClampedArray( 10 ) );
125125
// returns false
126126

127-
bool = isBooleanArray({ 'length': 0 });
127+
bool = isBooleanArray( { 'length': 0 } );
128128
// returns false
129129
```
130130

base/assert/is-booleanarray/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable object-curly-newline */
19+
/* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing */
2020

2121
'use strict';
2222

base/assert/is-complex-typed-array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var bool = isComplexTypedArray( arr );
6666

6767
## Examples
6868

69-
<!-- eslint-disable object-curly-newline -->
69+
<!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
7070

7171
<!-- eslint no-undef: "error" -->
7272

@@ -120,7 +120,7 @@ bool = isComplexTypedArray( new Uint8Array( 10 ) );
120120
bool = isComplexTypedArray( new Uint8ClampedArray( 10 ) );
121121
// returns false
122122

123-
bool = isComplexTypedArray({ 'length': 0 });
123+
bool = isComplexTypedArray( { 'length': 0 } );
124124
// returns false
125125
```
126126

base/assert/is-complex-typed-array/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable object-curly-newline */
19+
/* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing */
2020

2121
'use strict';
2222

base/assert/is-complex128array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var bool = isComplex128Array( arr );
6666

6767
## Examples
6868

69-
<!-- eslint-disable object-curly-newline -->
69+
<!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
7070

7171
<!-- eslint no-undef: "error" -->
7272

@@ -120,7 +120,7 @@ bool = isComplex128Array( new Uint8Array( 10 ) );
120120
bool = isComplex128Array( new Uint8ClampedArray( 10 ) );
121121
// returns false
122122

123-
bool = isComplex128Array({ 'length': 0 });
123+
bool = isComplex128Array( { 'length': 0 } );
124124
// returns false
125125
```
126126

base/assert/is-complex128array/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable object-curly-newline */
19+
/* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing */
2020

2121
'use strict';
2222

base/assert/is-complex64array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var bool = isComplex64Array( arr );
6666

6767
## Examples
6868

69-
<!-- eslint-disable object-curly-newline -->
69+
<!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
7070

7171
<!-- eslint no-undef: "error" -->
7272

@@ -120,7 +120,7 @@ bool = isComplex64Array( new Uint8Array( 10 ) );
120120
bool = isComplex64Array( new Uint8ClampedArray( 10 ) );
121121
// returns false
122122

123-
bool = isComplex64Array({ 'length': 0 });
123+
bool = isComplex64Array( { 'length': 0 } );
124124
// returns false
125125
```
126126

0 commit comments

Comments
 (0)