flashios09
flashios09
Can we support/add `obj` or `object` as an alias for `hash` ? The term `hash` has several meanings depending on the context, especially for non ember users, they will be...
> @flashios09 This is a reasonable point and one that has come up before. However, since `hash` has a long-standing history in Ember (aka we already have had that teaching...
> Because adding an alias to `obj` is a different task A different task ? ```js if (helper === 'hash') { import('hash').from('@ember/helper'); } ``` So we will need a new...
> @types/ember__test-helpers is not needed after version 2.9.0 @oliverlj For a reason that I ignore, typescript wasn't able to find the **types** after moving it from `@types/ember__test-helpers` to `@ember/test-helpers` !
I'm not sure but i think the issue is here: ```json [Trace - 7:06:37 PM] Received notification 'textDocument/publishDiagnostics'. Params: { "uri": "file:///PATH_TO_EMBER_APP/app/components/navigation/component.ts", "diagnostics": [ { "severity": 1, "message": "Import declaration...
> @flashios09 if you upgrade to 1.3, do you get your completions back? @NullVoxPopuli Sorry for the delay :( I have upgraded to 1.3, it will detect the imports but...
1- open the plugin file 2- find "public function setup(&$model, $config = null)" and change it with "public function setup(Model $model, $config = null)" -> just change the '&' character...
> I am against adding this feature. @sosukesuzuki This is not an **Angular feature** and it **will not affect** the way you write the code, which means you can still...
> I suggest use language comment instead. > > ```js > @Page({ > selector: 'posts-page', > template: /* HTML */ ` > My App > > `, > }) >...
> If this rule is something that is widely used in the Angular community, then I think it is worth accepting the complexity for this feature @sosukesuzuki This is not...