Skip to content

Commit f083e39

Browse files
committed
Fix lint errors and disable lint rule
1 parent dc9ab8d commit f083e39

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

lib/node_modules/@stdlib/_tools/bib/citation-reference/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ The method accepts the same `options` as [`toReference()`](#to-reference) above.
134134

135135
<!-- run-disable -->
136136

137+
<!-- eslint-disable stdlib/capitalized-comments -->
138+
137139
<!-- eslint no-undef: "error" -->
138140

139141
```javascript

lib/node_modules/@stdlib/_tools/eslint/rules/no-immediate-require/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ var linter = new Linter();
7474
var result;
7575
var code;
7676

77-
code = 'var pdf = require( \'@stdlib/math/base/dists/normal/pdf\' ).factory( 0.0, 1.0 );';
77+
code = 'var pdf = require( \'@stdlib/stats/base/dists/normal/pdf\' ).factory( 0.0, 1.0 );';
7878

7979
linter.defineRule( 'no-immediate-require', rule );
8080

@@ -92,7 +92,7 @@ result = linter.verify( code, {
9292
line': 2,
9393
'column': 15,
9494
'nodeType': 'CallExpression',
95-
'source': 'var pdf = require( \'@stdlib/math/base/dists/normal/pdf\' ).factory( 0.0, 1.0 );',
95+
'source': 'var pdf = require( \'@stdlib/stats/base/dists/normal/pdf\' ).factory( 0.0, 1.0 );',
9696
'endLine': 2,
9797
'endColumn': 29
9898
}

lib/node_modules/@stdlib/stats/ttest/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ table = out.print();
143143
Test Decision: Fail to reject null in favor of alternative at 1% significance level
144144
*/
145145

146-
147146
out = ttest( arr, {
148147
'alpha': 0.1
149148
});

lib/node_modules/@stdlib/streams/base/stdin/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function onError( error ) {
6565
function onEnd() {
6666
data = Buffer.concat( data, len );
6767
console.log( data.toString() );
68-
// returns '...'
68+
// => '...'
6969
}
7070
```
7171

lib/node_modules/@stdlib/utils/every-by-right/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ var mean = context.sum / context.count;
126126

127127
- The function does **not** skip `undefined` elements.
128128

129-
<!-- eslint-disable no-sparse-arrays -->
129+
<!-- eslint-disable no-sparse-arrays, stdlib/return-annotations-marker -->
130130

131131
```javascript
132132
function log( value, index ) {

lib/node_modules/@stdlib/utils/for-own/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ var obj = {
5757
};
5858

5959
forOwn( obj, log );
60-
/* e.g, =>
60+
/* e.g., =>
6161
a: 1
6262
b: 2
6363
c: 3

lib/node_modules/@stdlib/utils/inmap/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ var mean = context.sum / context.count;
133133

134134
- The function does **not** skip `undefined` elements.
135135

136-
<!-- eslint-disable no-sparse-arrays -->
136+
<!-- eslint-disable no-sparse-arrays, stdlib/return-annotations-marker -->
137137

138138
```javascript
139139
function log( value, index ) {

lib/node_modules/@stdlib/utils/memoize/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ obj.x = 1000;
9191
var v3 = memoized( obj );
9292
// returns 12
9393

94-
9594
// Custom hash function...
9695

9796
function hashFunction( args ) {

lib/node_modules/@stdlib/utils/none-by/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ var mean = context.sum / context.count;
124124

125125
- The function does **not** skip `undefined` elements.
126126

127-
<!-- eslint-disable no-sparse-arrays -->
127+
<!-- eslint-disable no-sparse-arrays, stdlib/return-annotations-marker -->
128128

129129
```javascript
130130
function log( value, index ) {

0 commit comments

Comments
 (0)