We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
v2 supports ESLint 6. However it also includes a number of breaking changes so we need to determine if any of them will impact our users: https://github.com/typescript-eslint/typescript-eslint/releases/tag/v2.0.0
The text was updated successfully, but these errors were encountered:
@typescript-eslint/no-angle-bracket-type-assertion is deprecated. So we need to change this line:
@typescript-eslint/no-angle-bracket-type-assertion
create-react-app/packages/eslint-config-react-app/index.js
Line 81 in 4410f5e
It's now called @typescript-eslint/consistent-type-assertions. I believe it can be set as:
@typescript-eslint/consistent-type-assertions
{ assertionStyle: 'as', objectLiteralTypeAssertions: 'allow' }
Not so sure about objectLiteralTypeAssertions though. There wasn't any existing rule on our config related to this.
objectLiteralTypeAssertions
Sorry, something went wrong.
Is there a release ETA for this? I see it's already been PRed and merged. Great job and thanks, btw! 👍
ianschmitz
Successfully merging a pull request may close this issue.
v2 supports ESLint 6. However it also includes a number of breaking changes so we need to determine if any of them will impact our users: https://github.com/typescript-eslint/typescript-eslint/releases/tag/v2.0.0
The text was updated successfully, but these errors were encountered: