Skip to content

Commit 5de19a6

Browse files
authored
Merge branch 'stdlib-js:develop' into ndarray-abs
2 parents f77a874 + 8c20ca4 commit 5de19a6

File tree

592 files changed

+40276
-509
lines changed

Some content is hidden

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

592 files changed

+40276
-509
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/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/followers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ function onFollowers( error, results, info ) {
209209
### Usage
210210

211211
```bash
212-
Usage: ghfollowers [options]
212+
Usage: ghfollowers [options]
213213

214214
Options:
215215

lib/node_modules/@stdlib/_tools/github/get/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ function onResponse( error, data, info ) {
110110

111111
To [authenticate][github-oauth2] with an endpoint, set the [`token`][github-token] option.
112112

113+
<!-- eslint-disable @cspell/spellchecker -->
114+
113115
```javascript
114116
var opts = {
115117
'token': 'tkjorjk34ek3nj4!'
@@ -223,6 +225,8 @@ function onResponse( error, data, info ) {
223225

224226
Returns a `function` which can be repeatedly invoked to retrieve resources from a [GitHub API][github-api] endpoint.
225227

228+
<!-- eslint-disable @cspell/spellchecker -->
229+
226230
```javascript
227231
function onResponse( error, data, info ) {
228232
// Check for rate limit info...
@@ -289,6 +293,8 @@ The method accepts the same `options` as [`get()`](#get) above.
289293

290294
## Examples
291295

296+
<!-- eslint-disable @cspell/spellchecker -->
297+
292298
<!-- eslint no-undef: "error" -->
293299

294300
```javascript
@@ -357,7 +363,7 @@ Options:
357363
--page page Resource page. Default: 1.
358364
--last_page page Last resource page to resolve. Default: 1.
359365
--per_page size Page size. Default: 100.
360-
--qs, --query qs Params portion of a query string.
366+
--qs, --query qs Params portion of a query string.
361367
```
362368

363369
</section>

lib/node_modules/@stdlib/_tools/github/rank-users/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ The `function` accepts the following `options`:
110110
- **repos**: rank based on number of public repositories.
111111
- **gists**: rank based on number of public gists.
112112
- **created**: rank based on when a user created a GitHub account.
113-
- **ffratio**: rank based on the ratio of `follower`-to-`following`.
113+
- **ffratio**: rank based on the ratio of `follower`-to-`following`.
114114

115115
During analysis, the module may need to request resources from the GitHub [API][github-api]. To permit GitHub [authentication][github-oauth2], set the [`token`][github-token] option.
116116

0 commit comments

Comments
 (0)