-
Notifications
You must be signed in to change notification settings - Fork 40
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
Self Closing tags #81
Comments
FWIW, we key the self closing tags off of |
I have since fix this on the codemod side. |
no-implicit-this is encountering this issue -- I don't quite understand what's going on, cause let paramTracker = {
enter(node) {
node.blockParams.forEach(param => {
scopedParams.push(param);
});
},
exit(node) {
node.blockParams.forEach(() => {
scopedParams.pop();
});
},
};
return {
Program: paramTracker,
ElementNode: paramTracker,
// etc @tylerturdenpants, how'd you solve this? |
@NullVoxPopuli it’s on a PR for the recast refactor. ember-codemods/ember-angle-brackets-codemod#97 |
One of the tests from https://github.com/ember-codemods/ember-angle-brackets-codemod/
Before
ember-template-recast
(correct)After
ember-template-recast
refactor (incorrect)The text was updated successfully, but these errors were encountered: