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
bad:
@classic export default class TestComponent extends Component { @fullNameMacro() fullName; }
good:
@classic class TestComponent extends Component { @fullNameMacro() fullName; } export default TestComponent;
see ember-cli/eslint-plugin-ember#1699 for additional context
The text was updated successfully, but these errors were encountered:
Update:
@classic export default TestComponent extends Component {} is legal now.
@classic export default TestComponent extends Component {}
https://twitter.com/leobalter/status/1621242353494425602
https://github.com/tc39/notes/blob/c7fa95d3f2d0af68eaba9d388d5f79f2e166a4cc/meetings/2023-01/feb-02.md#conclusionresolution-4
Sorry, something went wrong.
No branches or pull requests
bad:
good:
see ember-cli/eslint-plugin-ember#1699 for additional context
The text was updated successfully, but these errors were encountered: