Skip to content

Commit 4f259e5

Browse files
committed
chore: fix EditorConfig lint errors (issue stdlib-js#7335)
--- 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: passed - 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 fc9ba3a commit 4f259e5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/node_modules/@stdlib/lapack/base/sge-trans/test/test.ndarray.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -457,20 +457,20 @@ tape( 'the function supports specifying the strides of the first and second dime
457457
M = 4;
458458
N = 3;
459459

460-
/* eslint-disable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */
460+
/* eslint-disable array-element-newline, no-multi-spaces */
461461

462462
A = new Float32Array([
463-
1, 999, 2, 999, 3, 999,
463+
1, 999, 2, 999, 3, 999,
464464
999, 999, 999, 999, 999, 999,
465-
4, 999, 5, 999, 6, 999,
465+
4, 999, 5, 999, 6, 999,
466466
999, 999, 999, 999, 999, 999,
467-
7, 999, 8, 999, 9, 999,
467+
7, 999, 8, 999, 9, 999,
468468
999, 999, 999, 999, 999, 999,
469-
10, 999, 11, 999, 12, 999,
469+
10, 999, 11, 999, 12, 999,
470470
999, 999, 999, 999, 999, 999
471471
]);
472472

473-
/* eslint-enable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */
473+
/* eslint-enable array-element-newline, no-multi-spaces */
474474

475475
out = new Float32Array( M*N );
476476

0 commit comments

Comments
 (0)