Skip to content

Commit

Permalink
[BUGFIX release] Dummy app files follow Ember rules
Browse files Browse the repository at this point in the history
(cherry picked from commit 422baa8)
  • Loading branch information
mixonic authored and rwjblue committed Jan 11, 2018
1 parent 1bb21a4 commit d3d90a7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion blueprints/app/files/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ module.exports = {
],<% if (blueprint !== 'app') { %>
excludedFiles: [
'app/**',
'addon/**'
'addon/**',
'tests/dummy/app/**'
],<% } %>
parserOptions: {
sourceType: 'script',
Expand Down
3 changes: 2 additions & 1 deletion tests/fixtures/addon/npm/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ module.exports = {
],
excludedFiles: [
'app/**',
'addon/**'
'addon/**',
'tests/dummy/app/**'
],
parserOptions: {
sourceType: 'script',
Expand Down
3 changes: 2 additions & 1 deletion tests/fixtures/addon/yarn/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ module.exports = {
],
excludedFiles: [
'app/**',
'addon/**'
'addon/**',
'tests/dummy/app/**'
],
parserOptions: {
sourceType: 'script',
Expand Down

0 comments on commit d3d90a7

Please sign in to comment.