-
Notifications
You must be signed in to change notification settings - Fork 94
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
Incrementally replace any types with strong types #2888
Comments
This is continuous work that we can each contribute on |
I think an approach we can use here is to tackle parts of the code that have fewer side effects. Looking at it from the project structure, parts in like |
Current grep -c -R 'any'| grep -v :0 | grep -v '.json' | grep -v '.png' with output like: app/middleware/localStorageMiddleware.ts:1
app/middleware/telemetryMiddleware.ts:3
app/services/actions/adaptive-cards-action-creator.ts:2
app/services/actions/permissions-action-creator.spec.ts:2
... the total count we have is 137. Now we can reduce as we go. UpdateCurrent count 135 grep -c -R 'any'| grep -v :0 | grep -v '.json' | grep -v '.png' | wc -l |
Great suggestion @musale. |
Update the following locations
src/modules/authentication
with stronger types #3187src/modules/cache
src/modules/suggestions
src/modules/validation
The text was updated successfully, but these errors were encountered: