Skip to content

Commit 19d78d2

Browse files
authored
Merge branch 'stdlib-js:develop' into nullary-strided1d-dispatch
2 parents 0e87f72 + 3ac7464 commit 19d78d2

File tree

353 files changed

+18749
-233
lines changed

Some content is hidden

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

353 files changed

+18749
-233
lines changed

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Abhishek G <[email protected]>
1313
Abhishek Jain <[email protected]>
1414
Adarsh Palaskar <[email protected]>
1515
Aditya Sapra <[email protected]>
16+
Aditya Singh <[email protected]>
1617
Ahmed Atwa <[email protected]>
1718
Ahmed Kashkoush <[email protected]>
1819
Ahmed Khaled <[email protected]>
@@ -121,6 +122,7 @@ Muhammad Haris <[email protected]>
121122
Muhammad Taaha Tariq <[email protected]>
122123
Muhmmad Saad <[email protected]>
123124
NEEKUorAAYUSH <[email protected]>
125+
Nakul Krishnakumar <[email protected]>
124126
Naresh Jagadeesan <[email protected]>
125127
Naveen Kumar <[email protected]>
126128
Neeraj Pathak <[email protected]>

lib/node_modules/@stdlib/_tools/docs/www/readme-database/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ function done( error, db ) {
115115
}
116116
```
117117

118-
To have internal URLs of the READMEs link to relative (or absolute) documentation pages with a specified base path, set the `base` option.
118+
To have internal URLs of the READMEs link to relative (or absolute) documentation pages with a specified base path, set the `base` option.
119119

120120
<!-- run-disable -->
121121

lib/node_modules/@stdlib/_tools/docs/www/readme-fragment-file-tree/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ function done( error ) {
115115
}
116116
```
117117

118-
To have internal URLs of the READMEs link to relative (or absolute) documentation pages with a specified base path, set the `base` option.
118+
To have internal URLs of the READMEs link to relative (or absolute) documentation pages with a specified base path, set the `base` option.
119119

120120
<!-- run-disable -->
121121

lib/node_modules/@stdlib/_tools/doctest/create-annotation-value/test/test.validate.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ tape( 'the function returns an error if provided a `decimal` option which is not
6666
5,
6767
null,
6868
NaN,
69-
new Boolean( true ), // eslint-disable-line no-new-wrappers
69+
new Boolean( true ),
7070
void 0,
7171
[],
7272
{},
@@ -92,7 +92,7 @@ tape( 'the function returns an error if provided a `type` option which is not a
9292
5,
9393
null,
9494
NaN,
95-
new Boolean( true ), // eslint-disable-line no-new-wrappers
95+
new Boolean( true ),
9696
void 0,
9797
[],
9898
{},

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-table-cell-padding/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-table-cell-padding].
85+
The [rule][eslint-rules] may be configured using the same options as supported by [remark][remark-lint-table-cell-padding].
8686

8787
- `padded`: require table cells to be padded with spaces (default).
8888
- `consistent`: detects the first used cell padding style and requires subsequent cells to use same style.

lib/node_modules/@stdlib/_tools/eslint/rules/namespace-export-all/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var rule = require( '@stdlib/_tools/eslint/rules/namespace-export-all' );
3838

3939
#### rule
4040

41-
[ESLint rule][eslint-rules] to enforce that a namespace `index.js` exports all packages in the respective namespace directory. The rule is applied when a file contains a comment with the following content:
41+
[ESLint rule][eslint-rules] to enforce that a namespace `index.js` exports all packages in the respective namespace directory. The rule is applied when a file contains a comment with the following content:
4242

4343
> `When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.`.
4444

lib/node_modules/@stdlib/_tools/eslint/rules/namespace-index-order/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var rule = require( '@stdlib/_tools/eslint/rules/namespace-index-order' );
3838

3939
#### rule
4040

41-
[ESLint rule][eslint-rules] to enforce that modules in a namespace `index.js` file are listed in alphabetical order according to module name. The rule is applied when a file contains a comment with the following content:
41+
[ESLint rule][eslint-rules] to enforce that modules in a namespace `index.js` file are listed in alphabetical order according to module name. The rule is applied when a file contains a comment with the following content:
4242

4343
> `When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.`.
4444

lib/node_modules/@stdlib/_tools/eslint/rules/no-dynamic-exports/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var rule = require( '@stdlib/_tools/eslint/rules/no-dynamic-exports' );
3838

3939
#### rule
4040

41-
[ESLint rule][eslint-rules] enforcing only statically analyzable values are exported. Statically analyzable values include function expressions, variables, and string and number literals. The rule validates both Node.js `module.exports` and ECMAScript 6 default exports.
41+
[ESLint rule][eslint-rules] enforcing only statically analyzable values are exported. Statically analyzable values include function expressions, variables, and string and number literals. The rule validates both Node.js `module.exports` and ECMAScript 6 default exports.
4242

4343
**Bad**:
4444

lib/node_modules/@stdlib/_tools/github/create-token/test/test.validate.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ var validate = require( './../lib/validate.js' );
2626

2727
// TESTS //
2828

29-
tape( 'file exports a validation function', function test( t ) {
29+
tape( 'main export is a function', function test( t ) {
30+
t.ok( true, __filename );
3031
t.equal( typeof validate, 'function', 'main export is a function' );
3132
t.end();
3233
});

lib/node_modules/@stdlib/_tools/github/delete-token/test/test.validate.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ var validate = require( './../lib/validate.js' );
2626

2727
// TESTS //
2828

29-
tape( 'file exports a validation function', function test( t ) {
29+
tape( 'main export is a function', function test( t ) {
30+
t.ok( true, __filename );
3031
t.equal( typeof validate, 'function', 'main export is a function' );
3132
t.end();
3233
});

0 commit comments

Comments
 (0)