diff --git a/blueprints/app/files/.eslintrc.js b/blueprints/app/files/.eslintrc.js index 9a0b8badb5..f89e280507 100644 --- a/blueprints/app/files/.eslintrc.js +++ b/blueprints/app/files/.eslintrc.js @@ -28,7 +28,8 @@ module.exports = { ],<% if (blueprint !== 'app') { %> excludedFiles: [ 'app/**', - 'addon/**' + 'addon/**', + 'tests/dummy/app/**' ],<% } %> parserOptions: { sourceType: 'script', diff --git a/tests/fixtures/addon/npm/.eslintrc.js b/tests/fixtures/addon/npm/.eslintrc.js index 1c65e6db0a..3a07c6bcc1 100644 --- a/tests/fixtures/addon/npm/.eslintrc.js +++ b/tests/fixtures/addon/npm/.eslintrc.js @@ -28,7 +28,8 @@ module.exports = { ], excludedFiles: [ 'app/**', - 'addon/**' + 'addon/**', + 'tests/dummy/app/**' ], parserOptions: { sourceType: 'script', diff --git a/tests/fixtures/addon/yarn/.eslintrc.js b/tests/fixtures/addon/yarn/.eslintrc.js index 1c65e6db0a..3a07c6bcc1 100644 --- a/tests/fixtures/addon/yarn/.eslintrc.js +++ b/tests/fixtures/addon/yarn/.eslintrc.js @@ -28,7 +28,8 @@ module.exports = { ], excludedFiles: [ 'app/**', - 'addon/**' + 'addon/**', + 'tests/dummy/app/**' ], parserOptions: { sourceType: 'script',