Ember.js / Addon: How can I jshint all javascript files?

I am writing an addon ember.js. On startup, ember test

Ember will add a generic one to pass jshint tests into my test suite. This is great as much as possible, but the javascript files from the main directory (index.js, Brocfile.js) are missing, as are the files from the / ** / * app. As far as I can see, only files in addon / ** / \ and tests / ** / \ are considered.

Am I missing some obvious configuration option? This is mistake?

+3


source to share


1 answer


No, this is not a mistake. It works ember test

.

As soon as there was an issue about starting linter. But I haven't found any information on this issue.



If you want to run linting based on code, you can use cli or ide plugins .

0


source







All Articles