How can I get ember-cli to pick up my .jshintignore?

ember-cli gives me a hint of errors in the test file, for example mirage/config.js: and I want to disable ember-cli hints.

I tried to create a .jshintignore file using

 mirage/* app/mirage/* 

In / and / application and I created application / mirage / .jshintignore using

 * 

Nothing allows me to ignore entire folders. Do I have any options besides placing the jshint directive in each file?

+4
source share

All Articles