Skip to content

Commit 160d9f0

Browse files
committed
fix: package.json 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: passed - 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: 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 b689bd6 commit 160d9f0

File tree

2 files changed

+76
-76
lines changed

2 files changed

+76
-76
lines changed

lib/node_modules/@stdlib/blas/base/wasm/scasum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ function rand() {
265265
var cx = filledarrayBy( 10, 'complex64', rand );
266266
console.log( cx.toString() );
267267

268-
var out = scasum.ndarray( cx.length, cx, 1 );
268+
var out = scasum.ndarray( cx.length, cx, 1, 0 );
269269
console.log( out );
270270
```
271271

Lines changed: 75 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,80 @@
11
{
2-
"name": "@stdlib/blas/base/wasm/scasum",
3-
"version": "0.0.0",
4-
"description": "Compute the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point vector.",
5-
"license": "Apache-2.0",
6-
"author": {
2+
"name": "@stdlib/blas/base/wasm/scasum",
3+
"version": "0.0.0",
4+
"description": "Compute the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point vector.",
5+
"license": "Apache-2.0",
6+
"author": {
7+
"name": "The Stdlib Authors",
8+
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
9+
},
10+
"contributors": [
11+
{
712
"name": "The Stdlib Authors",
813
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
9-
},
10-
"contributors": [
11-
{
12-
"name": "The Stdlib Authors",
13-
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
14-
}
15-
],
16-
"main": "./lib",
17-
"browser": {
18-
"./lib/binary.js": "./lib/binary.browser.js"
19-
},
20-
"directories": {
21-
"benchmark": "./benchmark",
22-
"doc": "./docs",
23-
"example": "./examples",
24-
"lib": "./lib",
25-
"scripts": "./scripts",
26-
"src": "./src",
27-
"test": "./test"
28-
},
29-
"types": "./docs/types",
30-
"scripts": {},
31-
"homepage": "https://github.com/stdlib-js/stdlib",
32-
"repository": {
33-
"type": "git",
34-
"url": "git://github.com/stdlib-js/stdlib.git"
35-
},
36-
"bugs": {
37-
"url": "https://github.com/stdlib-js/stdlib/issues"
38-
},
39-
"dependencies": {},
40-
"devDependencies": {},
41-
"engines": {
42-
"node": ">=0.10.0",
43-
"npm": ">2.7.0"
44-
},
45-
"os": [
46-
"aix",
47-
"darwin",
48-
"freebsd",
49-
"linux",
50-
"macos",
51-
"openbsd",
52-
"sunos",
53-
"win32",
54-
"windows"
55-
],
56-
"keywords": [
57-
"stdlib",
58-
"stdmath",
59-
"mathematics",
60-
"math",
61-
"blas",
62-
"level 1",
63-
"scasum",
64-
"linear",
65-
"algebra",
66-
"subroutines",
67-
"sum",
68-
"vector",
69-
"array",
70-
"ndarray",
71-
"float32",
72-
"float",
73-
"float32array",
74-
"webassembly",
75-
"wasm"
76-
],
77-
"__stdlib__": {
78-
"wasm": true
7914
}
15+
],
16+
"main": "./lib",
17+
"browser": {
18+
"./lib/binary.js": "./lib/binary.browser.js"
19+
},
20+
"directories": {
21+
"benchmark": "./benchmark",
22+
"doc": "./docs",
23+
"example": "./examples",
24+
"lib": "./lib",
25+
"scripts": "./scripts",
26+
"src": "./src",
27+
"test": "./test"
28+
},
29+
"types": "./docs/types",
30+
"scripts": {},
31+
"homepage": "https://github.com/stdlib-js/stdlib",
32+
"repository": {
33+
"type": "git",
34+
"url": "git://github.com/stdlib-js/stdlib.git"
35+
},
36+
"bugs": {
37+
"url": "https://github.com/stdlib-js/stdlib/issues"
38+
},
39+
"dependencies": {},
40+
"devDependencies": {},
41+
"engines": {
42+
"node": ">=0.10.0",
43+
"npm": ">2.7.0"
44+
},
45+
"os": [
46+
"aix",
47+
"darwin",
48+
"freebsd",
49+
"linux",
50+
"macos",
51+
"openbsd",
52+
"sunos",
53+
"win32",
54+
"windows"
55+
],
56+
"keywords": [
57+
"stdlib",
58+
"stdmath",
59+
"mathematics",
60+
"math",
61+
"blas",
62+
"level 1",
63+
"scasum",
64+
"linear",
65+
"algebra",
66+
"subroutines",
67+
"sum",
68+
"vector",
69+
"array",
70+
"ndarray",
71+
"complex64",
72+
"complex",
73+
"complex64array",
74+
"webassembly",
75+
"wasm"
76+
],
77+
"__stdlib__": {
78+
"wasm": true
8079
}
80+
}

0 commit comments

Comments
 (0)