Skip to content

Commit 2d5d2a5

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into stats-array-variancewd
2 parents 5b6ff60 + 68510c1 commit 2d5d2a5

File tree

814 files changed

+37846
-1405
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

814 files changed

+37846
-1405
lines changed

.github/workflows/terminal.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,6 @@ jobs:
8888
git_commit_gpgsign: true
8989

9090
# Setup a terminal session:
91-
- name: 'Setup upterm session'
91+
- name: 'Setup tmate session'
9292
# Pin action to full length commit SHA
93-
uses: lhotari/action-upterm@b0357f23233f5ea6d58947c0c402e0631bab7334 # v1.0.0
93+
uses: mxschmitt/action-tmate@7b6a61a73bbb9793cb80ad69b8dd8ac19261834c # v3.2.2

etc/eslint/rules/typescript.js

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1366,7 +1366,7 @@ rules[ 'import/no-deprecated' ] = 'error';
13661366
* @name import/no-extraneous-dependencies
13671367
* @memberof rules
13681368
* @type {string}
1369-
* @default 'error'
1369+
* @default 'off'
13701370
* @see [import/no-extraneous-dependencies]{@link https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-extraneous-dependencies.md}
13711371
*
13721372
* @example
@@ -1376,22 +1376,28 @@ rules[ 'import/no-deprecated' ] = 'error';
13761376
* // Bad...
13771377
* import foo from 'some-extranous-module';
13781378
*/
1379-
rules[ 'import/no-extraneous-dependencies' ] = 'error';
1379+
rules[ 'import/no-extraneous-dependencies' ] = 'off'; // NOTE: disabled to allow imports of `@stdlib/*` type declarations
13801380

13811381
/**
13821382
* Prevents importing the submodules of other modules.
13831383
*
13841384
* @name import/no-internal-modules
13851385
* @memberof rules
13861386
* @type {string}
1387-
* @default 'error'
1387+
* @default 'off'
13881388
* @see [import/no-internal-modules]{@link https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-internal-modules.md}
13891389
*
13901390
* @example
13911391
* // Bad...
13921392
* import something from 'module/some/internal/path';
13931393
*/
1394-
rules[ 'import/no-internal-modules' ] = 'error';
1394+
rules[ 'import/no-internal-modules' ] = [
1395+
'error', {
1396+
'allow': [
1397+
'@stdlib/**'
1398+
]
1399+
}
1400+
];
13951401

13961402
/**
13971403
* Forbids import statements that import nothing.

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-ordered-list-marker-value/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function beep() {
8282
}
8383
```
8484

85-
The [rule][eslint-rules] may be configured using the same options as supported by [remark][remark-lint-ordered-list-marker-value].
85+
The [rule][eslint-rules] may be configured using the same options as supported by [remark][remark-lint-ordered-list-marker-value].
8686

8787
- `ordered`: increment list item markers by one (default).
8888
- `single`: list item markers should all have the same starting value.

lib/node_modules/@stdlib/array/base/bifurcate-entries-by/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
If a predicate function returns a truthy value, an array value is placed in
1212
the first group; otherwise, an array value is placed in the second group.
1313

14-
If provided an empty array, the function returns an empty object.
14+
If provided an empty array, the function returns an empty array.
1515

1616
Parameters
1717
----------
@@ -27,7 +27,7 @@
2727

2828
Returns
2929
-------
30-
out: Object
30+
out: Array
3131
Split results.
3232

3333
Examples

lib/node_modules/@stdlib/array/base/fill-by/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ declare function fillBy<T = unknown, V = unknown, ThisArg = unknown>( x: Accesso
225225
*
226226
* var x = [ 1, 2, 3 ];
227227
*
228-
* var out = fillBy( x, 4, 0, 3 );
228+
* var out = fillBy( x, 0, 3, fcn );
229229
* // returns [ 4, 4, 4 ]
230230
*
231231
* @example
@@ -235,7 +235,7 @@ declare function fillBy<T = unknown, V = unknown, ThisArg = unknown>( x: Accesso
235235
*
236236
* var x = [ 1, 2, 3, 4, 5, 6 ];
237237
*
238-
* var out = fillBy( x, 8, 0, 3 );
238+
* var out = fillBy( x, 0, 3, fcn );
239239
* // returns [ 8, 8, 8, 4, 5, 6 ]
240240
*/
241241
declare function fillBy<T = unknown, V = unknown, ThisArg = unknown>( x: Collection<T>, start: number, end: number, fcn: Callback<T, Collection<T>, V, ThisArg>, thisArg?: ThisParameterType<Callback<T, Collection<T>, V, ThisArg>> ): Collection<T | V>;

lib/node_modules/@stdlib/array/base/map5d/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ interface Routine {
139139
*
140140
* - **value**: array element.
141141
* - **indices**: current array element indices.
142-
* -- **array**: input nested array.
142+
* - **array**: input nested array.
143143
*
144144
* @param x - input nested array
145145
* @param shape - array shape

lib/node_modules/@stdlib/array/base/mskbinary2d/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*
3030
* @param {ArrayLikeObject<Array<Collection>>} arrays - array-like object containing two input nested arrays, an input nested mask array, and one output nested array
3131
* @param {NonNegativeIntegerArray} shape - array shape
32-
* @param {Callback} fcn - unary callback
32+
* @param {Callback} fcn - binary callback
3333
* @returns {void}
3434
*
3535
* @example

lib/node_modules/@stdlib/array/base/mskbinary4d/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*
3030
* @param {ArrayLikeObject<Array<Collection>>} arrays - array-like object containing two input nested arrays, an input nested mask array, and one output nested array
3131
* @param {NonNegativeIntegerArray} shape - array shape
32-
* @param {Callback} fcn - unary callback
32+
* @param {Callback} fcn - binary callback
3333
* @returns {void}
3434
*
3535
* @example

lib/node_modules/@stdlib/array/base/mskbinary5d/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*
3232
* @param {ArrayLikeObject<Array<Collection>>} arrays - array-like object containing two input nested arrays, an input nested mask array, and one output nested array
3333
* @param {NonNegativeIntegerArray} shape - array shape
34-
* @param {Callback} fcn - unary callback
34+
* @param {Callback} fcn - binary callback
3535
* @returns {void}
3636
*
3737
* @example

lib/node_modules/@stdlib/array/base/put/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ declare function put<T extends TypedArray | BooleanTypedArray, U = unknown>( x:
8585
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
8686
*
8787
* var indices = [ 1, 2 ];
88-
* var values = new Complex128Array( [ 20.0, 30.0, 40, 5.0 ] );
88+
* var values = new Complex128Array( [ 20.0, 30.0, 40.0, 5.0 ] );
8989
*
9090
* var out = put( x, indices, values, 'throw' );
9191
* // returns <Complex128Array>

0 commit comments

Comments
 (0)