Skip to content

Commit

Permalink
Merge pull request #83 from GlennGeelen/ignore-jscs
Browse files Browse the repository at this point in the history
ignore autogenerated .jscs files
  • Loading branch information
danielspaniel committed May 8, 2015
2 parents ed3c9a0 + b5085e0 commit d9b425a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/initializers/ember-data-factory-guy.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ export default {
if (moduleName.match('.jshint')) { // ignore autogenerated .jshint files
return;
}
if (moduleName.match('.jscs')) { // ignore autogenerated .jscs files
return;
}
require(moduleName, null, null, true);
});
}
Expand Down

0 comments on commit d9b425a

Please sign in to comment.