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
After changing this:
@state() _foo = false;
to this:
@state() accessor _foo = false;
causes an no_undef error on _foo. Can this be fixed?
The text was updated successfully, but these errors were encountered:
i suspect this isn't our problem and is actually just that eslint doesn't support stage 3 proposals out of the box
for example, this plugin exists from babel: https://github.com/babel/babel/tree/main/eslint/babel-eslint-plugin
which has its own no-undef to add support for accessors (until they reach stage 4)
no-undef
can you let me know if that helps?
Sorry, something went wrong.
No branches or pull requests
After changing this:
to this:
causes an no_undef error on _foo. Can this be fixed?
The text was updated successfully, but these errors were encountered: