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
no-deprecated-modulo-syntax
Please describe what the rule should do:
vue-i18n v10 will drop modulo Interpolation (rails-style interpolation). docs is here: https://vue-i18n.intlify.dev/guide/essentials/syntax.html#rails-i18n-format
I would like to provide this rule to support migration, and support with --fix in this rule too.
--fix
What category should the rule belong to?
Provide 2-3 code examples that this rule should warn about:
✗ BAD :
{ "hello": "%{msg} world" }
✓ GOOD:
{ "hello": "{msg} world" }
Additional context Not really relevant to this eslint plugin, but I will output a warning with message-compiler if it is also using modulo.
The text was updated successfully, but these errors were encountered:
no-deprecated-modulo-interpolation
kazupon
Successfully merging a pull request may close this issue.
Please describe what the rule should do:
vue-i18n v10 will drop modulo Interpolation (rails-style interpolation).
docs is here:
https://vue-i18n.intlify.dev/guide/essentials/syntax.html#rails-i18n-format
I would like to provide this rule to support migration, and support with
--fix
in this rule too.What category should the rule belong to?
Provide 2-3 code examples that this rule should warn about:
✗ BAD :
✓ GOOD:
Additional context
Not really relevant to this eslint plugin, but I will output a warning with message-compiler if it is also using modulo.
The text was updated successfully, but these errors were encountered: