Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
18c706c
chore: fix EditorConfig lint errors
ditsus Mar 1, 2025
0999aba
docs: update namespace table of contents
stdlib-bot Mar 1, 2025
b0b646a
bench: suppress uninitialized variable warning
yugalkaushik Mar 1, 2025
ffc6fed
refactor: move implementations and macros to separate files
anandkaranubc Mar 1, 2025
08f4ebd
docs: update namespace TypeScript declarations
stdlib-bot Mar 1, 2025
183d056
refactor: move implementations and macros to separate files
anandkaranubc Mar 1, 2025
b2c926b
refactor: move implementations and macros to separate files
anandkaranubc Mar 1, 2025
8da699b
feat: add `DIII_D` macro in `math/base/napi/quaternary`
anandkaranubc Mar 1, 2025
18ad933
docs: fix typo by replacing `int_32` with `int32_t`
anandkaranubc Mar 1, 2025
52c0299
bench: refactor random number generation
saurabhraghuvanshii Mar 1, 2025
61bb593
feat(stats): add C implementation for `stats/base/dists/hypergeometri…
anandkaranubc Mar 1, 2025
d847b9d
feat(stats): add C implementation for `stats/base/dists/hypergeometri…
anandkaranubc Mar 1, 2025
18c83e8
build: do not run workflow for PRs by bots
Planeshifter Mar 1, 2025
1878475
build(deps): bump ossf/scorecard-action from 2.4.0 to 2.4.1
dependabot[bot] Mar 1, 2025
8715038
build(deps): bump msys2/setup-msys2 from 2.26.0 to 2.27.0
dependabot[bot] Mar 1, 2025
89ce135
build(deps): bump r-lib/actions from 2.11.1 to 2.11.2
dependabot[bot] Mar 1, 2025
a72f4bd
build(deps): bump actions/upload-artifact from 4.6.0 to 4.6.1
dependabot[bot] Mar 1, 2025
934c483
build(deps): bump actions/cache from 4.2.0 to 4.2.2
dependabot[bot] Mar 1, 2025
5470254
feat: add C implementation for `stats/base/dists/planck/entropy`
yuvimittal Mar 1, 2025
71d2982
chore: fix EditorConfig linting errors
ditsus Mar 1, 2025
4f6dcf7
chore: fix EditorConfig lint errors
ditsus Mar 1, 2025
443bb59
chore: fix EditorConfig linting errors
ditsus Mar 1, 2025
ab74395
chore: fix EditorConfig linting errors
ditsus Mar 1, 2025
4b7b1c0
chore: fix EditorConfig linting errors
ditsus Mar 1, 2025
f67b7cb
chore: fix EditorConfig linting errors
ditsus Mar 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ result = linter.verify( code, {
});
console.log( result );
/* =>
[
{
'ruleId': 'no-nested-require',
'severity': 2,
'message': 'do not use nested property access for require() expressions',
'line': 2,
'column': 15,
'nodeType': 'CallExpression',
'source': 'var special = require( \'@stdlib/math\' ).base.special;',
'endLine': 2,
'endColumn': 29
}
]
[
{
'ruleId': 'no-nested-require',
'severity': 2,
'message': 'do not use nested property access for require() expressions',
'line': 2,
'column': 15,
'nodeType': 'CallExpression',
'source': 'var special = require( \'@stdlib/math\' ).base.special;',
'endLine': 2,
'endColumn': 29
}
]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
]
]

*/
152 changes: 76 additions & 76 deletions lib/node_modules/@stdlib/math/base/special/rsqrt/manifest.json
Original file line number Diff line number Diff line change
@@ -1,78 +1,78 @@
{
"options": {
"task": "build"
},
"fields": [
{
"field": "src",
"resolve": true,
"relative": true
},
{
"field": "include",
"resolve": true,
"relative": true
},
{
"field": "libraries",
"resolve": false,
"relative": false
},
{
"field": "libpath",
"resolve": true,
"relative": false
}
],
"confs": [
{
"task": "build",
"src": [
"./src/rsqrt.c"
],
"include": [
"./include"
],
"libraries": [
"-lm"
],
"libpath": [],
"dependencies": [
"@stdlib/math/base/napi/unary",
"@stdlib/math/base/special/sqrt"
]
},
{
"task": "benchmark",
"src": [
"./src/rsqrt.c"
],
"include": [
"./include"
],
"libraries": [
"-lm"
],
"libpath": [],
"dependencies": [
"@stdlib/math/base/special/sqrt"
]
},
{
"task": "examples",
"src": [
"./src/rsqrt.c"
],
"include": [
"./include"
],
"libraries": [
"-lm"
],
"libpath": [],
"dependencies": [
"@stdlib/math/base/special/sqrt"
]
}
]
"options": {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Per our EditorConfig configuration, please use two-space indentation in all JSON files. See

indent_size = 2
.

"task": "build"
},
"fields": [
{
"field": "src",
"resolve": true,
"relative": true
},
{
"field": "include",
"resolve": true,
"relative": true
},
{
"field": "libraries",
"resolve": false,
"relative": false
},
{
"field": "libpath",
"resolve": true,
"relative": false
}
],
"confs": [
{
"task": "build",
"src": [
"./src/rsqrt.c"
],
"include": [
"./include"
],
"libraries": [
"-lm"
],
"libpath": [],
"dependencies": [
"@stdlib/math/base/napi/unary",
"@stdlib/math/base/special/sqrt"
]
},
{
"task": "benchmark",
"src": [
"./src/rsqrt.c"
],
"include": [
"./include"
],
"libraries": [
"-lm"
],
"libpath": [],
"dependencies": [
"@stdlib/math/base/special/sqrt"
]
},
{
"task": "examples",
"src": [
"./src/rsqrt.c"
],
"include": [
"./include"
],
"libraries": [
"-lm"
],
"libpath": [],
"dependencies": [
"@stdlib/math/base/special/sqrt"
]
}
]
}
72 changes: 36 additions & 36 deletions lib/node_modules/@stdlib/ndarray/base/strides2offset/manifest.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
{
"options": {},
"fields": [
{
"field": "src",
"resolve": true,
"relative": true
},
{
"field": "include",
"resolve": true,
"relative": true
},
{
"field": "libraries",
"resolve": false,
"relative": false
},
{
"field": "libpath",
"resolve": true,
"relative": false
}
],
"confs": [
{
"src": [
"./src/main.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": []
}
]
"options": {},
"fields": [
{
"field": "src",
"resolve": true,
"relative": true
},
{
"field": "include",
"resolve": true,
"relative": true
},
{
"field": "libraries",
"resolve": false,
"relative": false
},
{
"field": "libpath",
"resolve": true,
"relative": false
}
],
"confs": [
{
"src": [
"./src/main.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": []
}
]
}
3 changes: 3 additions & 0 deletions lint_editorconfig_errors.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Linting files for basic formatting errors...
Success. No detected EditorConfig lint errors.

Loading