Skip to content

chore: fix EditorConfig lint errors issue #6588 #6596

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 2 commits into from
Apr 9, 2025
Merged
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
26 changes: 13 additions & 13 deletions lib/node_modules/@stdlib/number/float64/reviver/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,25 @@ import reviveNumber = require( '../../lib/main' );

// The function revives a JSON-serialized number...
{
const o = {
'type': 'float64',
'value': 'NaN'
};
reviveNumber( 'key', o ); // $ExpectType any
const o = {
'type': 'float64',
'value': 'NaN'
};
reviveNumber( 'key', o ); // $ExpectType any
}

// The compiler throws an error if the function is provided a first argument that is not a string or number...
{
reviveNumber( true, 1 ); // $ExpectError
reviveNumber( false, 1 ); // $ExpectError
reviveNumber( null, 1 ); // $ExpectError
reviveNumber( undefined, 1 ); // $ExpectError
reviveNumber( [], 1 ); // $ExpectError
reviveNumber( {}, 1 ); // $ExpectError
reviveNumber( true, 1 ); // $ExpectError
reviveNumber( false, 1 ); // $ExpectError
reviveNumber( null, 1 ); // $ExpectError
reviveNumber( undefined, 1 ); // $ExpectError
reviveNumber( [], 1 ); // $ExpectError
reviveNumber( {}, 1 ); // $ExpectError
}

// The compiler throws an error if the function is provided insufficient arguments...
{
reviveNumber(); // $ExpectError
reviveNumber( 'foo' ); // $ExpectError
reviveNumber(); // $ExpectError
reviveNumber( 'foo' ); // $ExpectError
}