Skip to content

Commit dd1692d

Browse files
committed
chore: fix lint errors (#10906)
--- 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: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent eee306a commit dd1692d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/node_modules/@stdlib/assert/is-negative-zero/benchmark/benchmark.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 no-new-wrappers, no-undefined, no-empty-function */
19+
/* eslint-disable no-undefined, no-empty-function */
2020

2121
'use strict';
2222

lib/node_modules/@stdlib/process/umask/scripts/binary_to_symbolic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var j;
3737
TOTAL = 8 * 8 * 8 * 8;
3838

3939
// For each integer value (octal number), determine the symbolic notation equivalent to the value's binary representation...
40-
masks = new Array( TOTAL );
40+
masks = [];
4141
for ( i = 0; i < TOTAL; i++ ) {
4242
tmp = '';
4343

0 commit comments

Comments
 (0)