- 
                Notifications
    
You must be signed in to change notification settings  - Fork 2
 
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
Description
The any type can sometimes leak into your codebase. TypeScript compiler skips the type checking of the any typed variables, so it creates a potential safety hole, and source of bugs in your codebase. We recommend using unknown or never type variable.
Occurrences
| } catch (error: any) { | 
| export function validateType(key: string, value: any, type: string) { | 
| getCache.mockResolvedValue([{} as any]); | 
Guidelines
Reference the issue in your PR description, to close it automatically when your PR is merged
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers