Skip to content

chore: fix EditorConfig lint errors (issue #7199) #7205

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 1 commit into from
Jun 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -23,7 +23,7 @@
*/
interface IsFiniteArray {
/**
* Tests if a value is an array-like object of finite numbers.
* Tests if a value is an array-like object of finite numbers.
*
* @param value - value to test
* @returns boolean indicating whether a value is an array-like object of finite numbers
Expand All @@ -36,7 +36,7 @@
* var bool = isFiniteArray( [ -3.0, 1.0/0.0 ] );
* // returns false
*/
( value: any ): value is ArrayLike<number | Number>;

Check warning on line 39 in lib/node_modules/@stdlib/assert/is-finite-array/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

/**
* Tests if a value is an array-like object containing only primitive finite numbers.
Expand All @@ -56,7 +56,7 @@
* var bool = isFiniteArray.primitives( [ -3.0, new Number(-1.0) ] );
* // returns false
*/
primitives( value: any ): value is ArrayLike<number>;

Check warning on line 59 in lib/node_modules/@stdlib/assert/is-finite-array/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

/**
* Tests if a value is an array-like object containing only number objects having finite values.
Expand All @@ -76,7 +76,7 @@
* var bool = isFiniteArray.objects( [ 3.0, new Number(-1.0) ] );
* // returns false
*/
objects( value: any ): value is ArrayLike<Number>;

Check warning on line 79 in lib/node_modules/@stdlib/assert/is-finite-array/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
}

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"objectMode": false,
"encoding": null,
"sep": "\n",
"copy": true,
"siter": 1e308
"objectMode": false,
"encoding": null,
"sep": "\n",
"copy": true,
"siter": 1e308
}