Open
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
Guidelines
Reference the issue in your PR description, to close it automatically when your PR is merged