Skip to content

Commit d407c46

Browse files
fix: lint 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: passed - 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: passed - task: lint_javascript_tests status: passed - 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: passed - task: lint_license_headers status: passed ---
1 parent bd33456 commit d407c46

14 files changed

Lines changed: 23 additions & 15 deletions

File tree

lib/node_modules/@stdlib/lapack/base/dlasv2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
@license Apache-2.0
44
5-
Copyright (c) 2024 The Stdlib Authors.
5+
Copyright (c) 2026 The Stdlib Authors.
66
77
Licensed under the Apache License, Version 2.0 (the "License");
88
you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
> Compute singular value decomposition of a 2x2 triangular matrix.
2424
25-
<section class = "usage">
25+
<section class="usage">
2626

2727
## Usage
2828

lib/node_modules/@stdlib/lapack/base/dlasv2/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2024 The Stdlib Authors.
4+
* Copyright (c) 2026 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/lapack/base/dlasv2/benchmark/benchmark.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2024 The Stdlib Authors.
4+
* Copyright (c) 2026 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/lapack/base/dlasv2/docs/types/index.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2024 The Stdlib Authors.
4+
* Copyright (c) 2026 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -35,6 +35,7 @@ interface Routine {
3535
*
3636
* @example
3737
* var Float64Array = require( '@stdlib/array/float64' );
38+
*
3839
* var out = new Float64Array( 6 );
3940
*
4041
* out = dlasv2( 2.0, 3.0, 4.0, out );
@@ -55,6 +56,7 @@ interface Routine {
5556
*
5657
* @example
5758
* var Float64Array = require( '@stdlib/array/float64' );
59+
*
5860
* var out = new Float64Array( 6 );
5961
*
6062
* out = dlasv2.ndarray( 2.0, 3.0, 4.0, out, 1, 0 );
@@ -74,13 +76,15 @@ interface Routine {
7476
*
7577
* @example
7678
* var Float64Array = require( '@stdlib/array/float64' );
79+
*
7780
* var out = new Float64Array( 6 );
7881
*
7982
* out = dlasv2( 2.0, 3.0, 4.0, out );
8083
* // out => <Float64Array>[ 1.5513263285176897, 5.1568776039816795, 0.9664996487646696, 0.25666793515702424, 0.7496781758158659, 0.6618025632357402 ]
8184
*
8285
* @example
8386
* var Float64Array = require( '@stdlib/array/float64' );
87+
*
8488
* var out = new Float64Array( 6 );
8589
*
8690
* out = dlasv2.ndarray( 2.0, 3.0, 4.0, out, 1, 0 );

lib/node_modules/@stdlib/lapack/base/dlasv2/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2024 The Stdlib Authors.
4+
* Copyright (c) 2026 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/lapack/base/dlasv2/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2024 The Stdlib Authors.
4+
* Copyright (c) 2026 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/lapack/base/dlasv2/lib/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2024 The Stdlib Authors.
4+
* Copyright (c) 2026 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/lapack/base/dlasv2/lib/dlasv2.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2024 The Stdlib Authors.
4+
* Copyright (c) 2026 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -36,6 +36,7 @@ var base = require( './base.js' );
3636
*
3737
* @example
3838
* var Float64Array = require( '@stdlib/array/float64' );
39+
*
3940
* var out = new Float64Array( 6 );
4041
*
4142
* out = dlasv2( 2.0, 3.0, 4.0, out );

lib/node_modules/@stdlib/lapack/base/dlasv2/lib/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2024 The Stdlib Authors.
4+
* Copyright (c) 2026 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -26,6 +26,7 @@
2626
* @example
2727
* var Float64Array = require( '@stdlib/array/float64' );
2828
* var dlasv2 = require( '@stdlib/lapack/base/dlasv2' );
29+
*
2930
* var out = new Float64Array( 6 );
3031
*
3132
* out = dlasv2( 2.0, 3.0, 4.0, out );
@@ -34,6 +35,7 @@
3435
* @example
3536
* var Float64Array = require( '@stdlib/array/float64' );
3637
* var dlasv2 = require( '@stdlib/lapack/base/dlasv2' );
38+
*
3739
* var out = new Float64Array( 6 );
3840
*
3941
* out = dlasv2.ndarray( 2.0, 3.0, 4.0, out, 1, 0 );

lib/node_modules/@stdlib/lapack/base/dlasv2/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2024 The Stdlib Authors.
4+
* Copyright (c) 2026 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)