Patrick Pircher
Patrick Pircher
@shellscape fixed prettier
its using eslint-plugin-ember@`11.12.0` I do not see this issue in the alpha release. @amk221 can you try to alpha release and check if you still have the issue?
Looks like eslint ember plugin fails to notify to setup the correct config in this case: https://github.com/ember-cli/eslint-plugin-ember?tab=readme-ov-file#gtsgjs
@bmish this now works with the new parser strategy. though it just leaves the template where it is
Not with ember static source enabled. Then it's not accessible.
Biggest issue is the boot load event. https://github.com/emberjs/ember.js/blob/main/packages/ember/barrel.ts#L749 And the whole ember source needs to be loaded before inspector can access it. (With AMD) There have been multiple issues around...
E.g. https://github.com/emberjs/ember-inspector/pull/2051 As an example
i've made a eslint-plugin for this: https://github.com/patricklx/eslint-plugin-ember-template-lint it can also run on hbs and gts/gjs files and apply fixes. It currently uses synckit, like prettier does, because ember-template-lint uses esm....
For this case you could probably just create a component.d.ts file with the same patterns as usual. So, octane native component with typed args passeds to it
this is supported on ember-cli https://github.com/ember-cli/ember-cli/pull/6182