Skip to content

chore: fix JavaScript lint errors (issue #6698) #6699

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Apr 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

'use strict';

// cspell:ignore lloc

/**
* Calculate the logical lines of code (LLOC) in a JavaScript program.
*
Expand Down
27 changes: 27 additions & 0 deletions lib/node_modules/@stdlib/complex/float32/base/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@ setReadOnly( ns, 'add', require( '@stdlib/complex/float32/base/add' ) );
*/
setReadOnly( ns, 'assert', require( '@stdlib/complex/float32/base/assert' ) );

/**
* @name identity
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/float32/base/identity}
*/
setReadOnly( ns, 'identity', require( '@stdlib/complex/float32/base/identity' ) );

/**
* @name mul
* @memberof ns
Expand All @@ -63,6 +72,24 @@ setReadOnly( ns, 'assert', require( '@stdlib/complex/float32/base/assert' ) );
*/
setReadOnly( ns, 'mul', require( '@stdlib/complex/float32/base/mul' ) );

/**
* @name neg
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/float32/base/neg}
*/
setReadOnly( ns, 'neg', require( '@stdlib/complex/float32/base/neg' ) );

/**
* @name sub
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/float32/base/sub}
*/
setReadOnly( ns, 'sub', require( '@stdlib/complex/float32/base/sub' ) );


// EXPORTS //

Expand Down
Loading