You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
going-confetti
changed the title
Update eslint to use recommended-type-checked config and fix type errors
Address eslint issues that currently ignored
Dec 19, 2024
Step 1 - Done ✅
Currently, we are not using the correct config for type checked project, which allows implicit
any
and other type-unsafe operations. To fix this:Use
plugin:@typescript-eslint/recommended-type-checked
eslint config instead ofplugin:@typescript-eslint/recommended
https://typescript-eslint.io/getting-started/typed-linting/Fix type errors - as of writing, it shows 167 errors.
This is needed to prevent hard to find bugs in the future and keep the project type-safe.
Step 2 - TODO
Fix Eslint errors that are currently ignored. Most of them can be find under the following comment:
The text was updated successfully, but these errors were encountered: