-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
deps: Upgrade various packages #208
Conversation
support for newest version of typescript
there are some lint errors that will have to be fixed when merging in sentry |
@@ -38,4 +38,4 @@ jobs: | |||
SENTRY_ESLINT_RELAXED: 1 | |||
run: | | |||
cd sentry | |||
yarn lint |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
biome kept running and throwing errors? we don't inherit the biome lint rules though
// TODO(scttcper): Turn no-empty-object-type on to make our types more strict | ||
// '@typescript-eslint/no-empty-object-type': 'error', | ||
// TODO(scttcper): Turn no-function on to make our types more strict | ||
// '@typescript-eslint/no-unsafe-function-type': 'error', | ||
'@typescript-eslint/no-wrapper-object-types': 'error', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ban-types is now a mix of no-restricted-types and these others that could be enabled. would be nice to ban Function type. it s the same as (...any) => any
support for latest version of typescript