Andrew Kirwin
Andrew Kirwin
+1 for continuing to delegate to prettier. However, with my config: ``` module.exports = { singleQuote: true, overrides: [{ files: '*.hbs', options: { singleQuote: false, parser: 'glimmer' } }] };...
Related: https://github.com/ember-cli/eslint-plugin-ember/issues/235 (The _inverse_ of the problem, a Route being detected as a Component)
Also, I'm not sure how, but as you can see from this screenshot, when building our app on Jenkins the plugin seems to think this component is a route, despite...
Regarding my above comment, we discovered this was happening because the _branch name_ had the word 'route' in it, which gets applied to the filename.
Ohh, is that how you're figuring it out? :( ``` tests/lib/common/unit/mixins/model/de-dupe.js ```
Ok. I store my mixins in directories like so: ``` lib/mixins/model lib/mixins/route lib/mixins/controller lib/mixins/component ``` because I have a lot, I group them by the type of thing they are...
I suppose I could do that for the time being 🙂 But I'd prefer to keep this issue open so that a better solution is found. (It seems to be...
Anyone able to clarify this is a bug?
This issue also raises its head as part of our build process. For example, creating a branch with a name like "colocate-components" (Something very likely to be done) Means everything...
Fab thanks!!