Skip to content

Commit 02f2fa5

Browse files
committed
Auto-generated commit
1 parent 4881002 commit 02f2fa5

42 files changed

Lines changed: 65 additions & 41 deletions

Some content is hidden

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

CHANGELOG.md

Lines changed: 3 additions & 1 deletion

base/unary-accumulate/lib/10d.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 max-depth, node/callback-return */
19+
/* eslint-disable max-depth, n/callback-return */
2020

2121
'use strict';
2222

base/unary-accumulate/lib/10d_accessors.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 max-depth, node/callback-return */
19+
/* eslint-disable max-depth, n/callback-return */
2020

2121
'use strict';
2222

base/unary-accumulate/lib/10d_blocked.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 max-depth, max-len, node/callback-return */
19+
/* eslint-disable max-depth, max-len, n/callback-return */
2020

2121
'use strict';
2222

base/unary-accumulate/lib/10d_blocked_accessors.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 max-depth, max-len, node/callback-return */
19+
/* eslint-disable max-depth, max-len, n/callback-return */
2020

2121
'use strict';
2222

base/unary-accumulate/lib/1d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function accumulate1d( x, initial, clbk ) {
9393

9494
// Iterate over the ndarray dimensions...
9595
for ( i0 = 0; i0 < S0; i0++ ) {
96-
acc = clbk( acc, xbuf[ ix ] ); // eslint-disable-line node/callback-return
96+
acc = clbk( acc, xbuf[ ix ] ); // eslint-disable-line n/callback-return
9797
ix += dx0;
9898
}
9999
return acc;

base/unary-accumulate/lib/1d_accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ function accumulate1d( x, initial, clbk ) {
117117

118118
// Iterate over the ndarray dimensions...
119119
for ( i0 = 0; i0 < S0; i0++ ) {
120-
acc = clbk( acc, get( xbuf, ix ) ); // eslint-disable-line node/callback-return
120+
acc = clbk( acc, get( xbuf, ix ) ); // eslint-disable-line n/callback-return
121121
ix += dx0;
122122
}
123123
return acc;

base/unary-accumulate/lib/2d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ function accumulate2d( x, initial, clbk ) {
116116
// Iterate over the ndarray dimensions...
117117
for ( i1 = 0; i1 < S1; i1++ ) {
118118
for ( i0 = 0; i0 < S0; i0++ ) {
119-
acc = clbk( acc, xbuf[ ix ] ); // eslint-disable-line node/callback-return
119+
acc = clbk( acc, xbuf[ ix ] ); // eslint-disable-line n/callback-return
120120
ix += dx0;
121121
}
122122
ix += dx1;

base/unary-accumulate/lib/2d_accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ function accumulate2d( x, initial, clbk ) {
140140
// Iterate over the ndarray dimensions...
141141
for ( i1 = 0; i1 < S1; i1++ ) {
142142
for ( i0 = 0; i0 < S0; i0++ ) {
143-
acc = clbk( acc, get( xbuf, ix ) ); // eslint-disable-line node/callback-return
143+
acc = clbk( acc, get( xbuf, ix ) ); // eslint-disable-line n/callback-return
144144
ix += dx0;
145145
}
146146
ix += dx1;

base/unary-accumulate/lib/2d_blocked.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ function blockedaccumulate2d( x, initial, clbk ) {
142142
// Iterate over the ndarray dimensions...
143143
for ( i1 = 0; i1 < s1; i1++ ) {
144144
for ( i0 = 0; i0 < s0; i0++ ) {
145-
acc = clbk( acc, xbuf[ ix ] ); // eslint-disable-line node/callback-return
145+
acc = clbk( acc, xbuf[ ix ] ); // eslint-disable-line n/callback-return
146146
ix += dx0;
147147
}
148148
ix += dx1;

0 commit comments

Comments
 (0)