Skip to content

chore: fix EditorConfig lint errors #6925 #6937

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
May 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
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 @@ -68,14 +68,14 @@ desc_link_text=${DESC_LINK_TEXT:-'addition'}
# Define a list of keywords:
if [[ -z "${KEYWORDS:-}" ]]; then
keywords=(
"stdmath"
"mathematics"
"math"
"add"
"sum"
"addition"
"arithmetic"
"summation"
"stdmath"
"mathematics"
"math"
"add"
"sum"
"addition"
"arithmetic"
"summation"
)
else
IFS=','; read -ra keywords <<< "${KEYWORDS}"; IFS=' ';
Expand All @@ -90,14 +90,14 @@ rand_max=${RAND_MAX:-'10.0'}
# Define a list of values for first input array:
if [[ -z "${X_VALUES_LEN_8:-}" ]]; then
x_values_len_8=(
'1.0'
'2.0'
'3.0'
'4.0'
'5.0'
'6.0'
'7.0'
'8.0'
'1.0'
'2.0'
'3.0'
'4.0'
'5.0'
'6.0'
'7.0'
'8.0'
)
else
IFS=','; read -ra x_values_len_8 <<< "${X_VALUES_LEN_8}"; IFS=' ';
Expand All @@ -106,14 +106,14 @@ fi
# Define a list of values for second input array:
if [[ -z "${Y_VALUES_LEN_8:-}" ]]; then
y_values_len_8=(
'11.0'
'12.0'
'13.0'
'14.0'
'15.0'
'16.0'
'17.0'
'18.0'
'11.0'
'12.0'
'13.0'
'14.0'
'15.0'
'16.0'
'17.0'
'18.0'
)
else
IFS=','; read -ra y_values_len_8 <<< "${Y_VALUES_LEN_8}"; IFS=' ';
Expand Down
68 changes: 34 additions & 34 deletions lib/node_modules/@stdlib/assert/napi/is-typedarray/manifest.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
{
"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": [
"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": [
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/assert/napi/status-ok"
]
}
]
}
]
}
Loading