Skip to content

Commit

Permalink
chore: resolve lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Jul 24, 2023
1 parent 82e13fd commit a81b24f
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ setReadOnly( Model.prototype, '_inverseScalingLearningRate', function invscaling
*
* with \\(w\\) being the model weight vector and \\(b\\) being the intercept.
*
*
* @private
* @name _logLoss
* @memberof Model.prototype
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/nlp/lda/lib/validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ var format = require( '@stdlib/string/format' );
* @param {PositiveNumber} [options.beta] - Dirichlet hyper-parameter for word vector phi
* @returns {(Error|null)} null or an error object
*
*
* @example
* var opts = {};
* var options = {};
Expand Down
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/nlp/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,15 @@ setReadOnly( nlp, 'ordinalize', require( '@stdlib/nlp/ordinalize' ) );
*/
setReadOnly( nlp, 'porterStemmer', require( '@stdlib/nlp/porter-stemmer' ) );

/**
* @name sentencize
* @memberof nlp
* @readonly
* @type {Function}
* @see {@link module:@stdlib/nlp/sentencize}
*/
setReadOnly( nlp, 'sentencize', require( '@stdlib/nlp/sentencize' ) );

/**
* @name tokenize
* @memberof nlp
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/process/getegid/lib/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var proc = require( 'process' );
* @example
* var gid = getegid();
*/
var getegid = proc.getegid;
var getegid = proc.getegid; // eslint-disable-line node/no-unsupported-features/node-builtins


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/process/getegid/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ tape( 'if `process.getegid` is a function, the main export aliases `process.gete
var getegid = proxyquire( './../lib/main.js', {
'@stdlib/assert/is-function': isFunction
});
t.strictEqual( getegid, proc.getegid, 'is alias' );
t.strictEqual( getegid, proc.getegid, 'is alias' ); // eslint-disable-line node/no-unsupported-features/node-builtins
t.end();

function isFunction() {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/process/geteuid/lib/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var proc = require( 'process' );
* @example
* var uid = geteuid();
*/
var geteuid = proc.geteuid;
var geteuid = proc.geteuid; // eslint-disable-line node/no-unsupported-features/node-builtins


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/process/geteuid/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ tape( 'if `process.geteuid` is a function, the main export aliases `process.gete
var geteuid = proxyquire( './../lib/main.js', {
'@stdlib/assert/is-function': isFunction
});
t.strictEqual( geteuid, proc.geteuid, 'is alias' );
t.strictEqual( geteuid, proc.geteuid, 'is alias' ); // eslint-disable-line node/no-unsupported-features/node-builtins
t.end();

function isFunction() {
Expand Down

0 comments on commit a81b24f

Please sign in to comment.