Skip to content

Commit 7bee5a7

Browse files
fix: resolve JS linting errors
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent e1e1e0f commit 7bee5a7

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

etc/eslint/rules/spellcheck.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,11 @@ rules[ '@cspell/spellchecker' ] = [ 'warn', {
116116
'trigamma',
117117
'uncapitalize',
118118
'unregularized',
119-
'Fréchet'
119+
'Fréchet',
120+
'cceil',
121+
'cadd',
122+
'अनुच्छेद',
123+
'nega'
120124
]
121125
}
122126
}];

lib/node_modules/@stdlib/assert/is-arraybuffer-view/lib/polyfill.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ var isDataView = require( '@stdlib/assert/is-dataview' );
3939
*
4040
* @example
4141
* var Int8Array = require( '@stdlib/array/int8' );
42+
4243
* var bool = isArrayBufferView( new Int8Array( 10 ) );
4344
* // returns true
4445
*

lib/node_modules/@stdlib/stats/chi2gof/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function chi2gof( x, y ) {
132132
if ( pmf instanceof Error ) {
133133
throw pmf;
134134
}
135-
nargs += pmf.length - 1; // WARNING: this relies on PMF functions having an explicit arity
135+
nargs += pmf.length - 1; // NOTE: this relies on PMF functions having an explicit arity
136136
args = [ 0 ];
137137
for ( i = 0; i < nargs; i++ ) {
138138
v = arguments[ i+2 ];
@@ -203,7 +203,7 @@ function chi2gof( x, y ) {
203203
throw err;
204204
}
205205
}
206-
stat = testStatistic( N, obs, 1, expected, 1 ); // TODO: consider replacing with low-level double-precision strided interface
206+
stat = testStatistic( N, obs, 1, expected, 1 ); // consider replacing with low-level double-precision strided interface in future
207207
if ( opts.simulate ) {
208208
if ( p === void 0 ) {
209209
v = dsumpw( N, expected, 1 );

0 commit comments

Comments
 (0)