-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Typed ember glimmer #15759
Typed ember glimmer #15759
Conversation
} | ||
|
||
lookupPartial(name, { owner }) { | ||
lookupPartial(PartialName: string, meta: any): PartialDefinition<any> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/PartialName/name/
@@ -57,38 +57,38 @@ class OutletComponentManager extends AbstractManager<StateBucket> { | |||
return new StateBucket(outletState); | |||
} | |||
|
|||
layoutFor(definition, bucket, env) { | |||
layoutFor(definition, _bucket, env: Environment) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was wondering how to ignore some parameters.
Are we now doing the dangling comma? |
DANGLE IT |
@chadhietala are we not supposed to? I just did the tslint defaults and turned off the ones that seemed too cumbersome |
I hate it, but if we use prettier I can deal with it. |
We should probably use the glimmer rules (or adapt that to fit our actual
preference). Having two sets of rules for those two projects seems
confusing.
…On Thu, Oct 26, 2017 at 5:26 PM Chad Hietala ***@***.***> wrote:
I hate it, but if we use prettier I can deal with it.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#15759 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AADaFUDEaumCntxGT4yC6396Bh905ZtEks5swSNHgaJpZM4QFHBK>
.
|
For example, UpdatableTag does not have a public constructor anymore, you must use the static UpdatableTag.create now, which returns the tag in a TagWrapper.
a253b69
to
29689a3
Compare
Rebased on top of changes from #15716 (which basically introduced a conflict in all the files 😩 )... |
I am +1 on this. |
🎉 |
There is still work needed here, but this seems stable (and is passing CI). |
Fixes #15729