Skip to content

Commit 29e01cd

Browse files
authored
style: disable lint rule
This commit disables a lint rule due to a false positive arising from `ComplexArray`. This is a defined type currently in our JSDoc type definitions. Signed-off-by: Athan <[email protected]>
1 parent ce078af commit 29e01cd

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/array/filled/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/array/filled/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ function filledAccessors( arr, value ) {
178178
* var arr = filledarray( 1, buf, 8, 2, 'int32' );
179179
* // returns <Int32Array>[ 1, 1 ]
180180
*/
181-
function filledarray() {
181+
function filledarray() { // eslint-disable-line stdlib/jsdoc-typedef-typos
182182
var value;
183183
var nargs;
184184
var dtype;

0 commit comments

Comments
 (0)