Skip to content

Commit

Permalink
Merge pull request #7553 from rwjblue/remove-embertest
Browse files Browse the repository at this point in the history
Remove embertest from ESLint configuration.
  • Loading branch information
rwjblue committed Jan 13, 2018
2 parents 30b1826 + a4934bd commit 5504295
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 72 deletions.
9 changes: 0 additions & 9 deletions blueprints/app/files/.eslintrc.js
Expand Up @@ -43,15 +43,6 @@ module.exports = {
rules: Object.assign({}, require('eslint-plugin-node').configs.recommended.rules, {
// add your custom rules and overrides for node files here
})<% } %>
},

// test files
{
files: ['tests/**/*.js'],
excludedFiles: ['tests/dummy/**/*.js'],
env: {
embertest: true
}
}
]
};
9 changes: 0 additions & 9 deletions blueprints/module-unification-app/files/.eslintrc.js
Expand Up @@ -34,15 +34,6 @@ module.exports = {
browser: false,
node: true
}
},

// test files
{
files: ['tests/**/*.js'],
excludedFiles: ['tests/dummy/**/*.js'],
env: {
embertest: true
}
}
]
};
9 changes: 0 additions & 9 deletions tests/fixtures/addon/npm/.eslintrc.js
Expand Up @@ -43,15 +43,6 @@ module.exports = {
rules: Object.assign({}, require('eslint-plugin-node').configs.recommended.rules, {
// add your custom rules and overrides for node files here
})
},

// test files
{
files: ['tests/**/*.js'],
excludedFiles: ['tests/dummy/**/*.js'],
env: {
embertest: true
}
}
]
};
9 changes: 0 additions & 9 deletions tests/fixtures/addon/yarn/.eslintrc.js
Expand Up @@ -43,15 +43,6 @@ module.exports = {
rules: Object.assign({}, require('eslint-plugin-node').configs.recommended.rules, {
// add your custom rules and overrides for node files here
})
},

// test files
{
files: ['tests/**/*.js'],
excludedFiles: ['tests/dummy/**/*.js'],
env: {
embertest: true
}
}
]
};
9 changes: 0 additions & 9 deletions tests/fixtures/app/npm/.eslintrc.js
Expand Up @@ -32,15 +32,6 @@ module.exports = {
browser: false,
node: true
}
},

// test files
{
files: ['tests/**/*.js'],
excludedFiles: ['tests/dummy/**/*.js'],
env: {
embertest: true
}
}
]
};
9 changes: 0 additions & 9 deletions tests/fixtures/app/yarn/.eslintrc.js
Expand Up @@ -32,15 +32,6 @@ module.exports = {
browser: false,
node: true
}
},

// test files
{
files: ['tests/**/*.js'],
excludedFiles: ['tests/dummy/**/*.js'],
env: {
embertest: true
}
}
]
};
9 changes: 0 additions & 9 deletions tests/fixtures/module-unification-app/npm/.eslintrc.js
Expand Up @@ -34,15 +34,6 @@ module.exports = {
browser: false,
node: true
}
},

// test files
{
files: ['tests/**/*.js'],
excludedFiles: ['tests/dummy/**/*.js'],
env: {
embertest: true
}
}
]
};
9 changes: 0 additions & 9 deletions tests/fixtures/module-unification-app/yarn/.eslintrc.js
Expand Up @@ -34,15 +34,6 @@ module.exports = {
browser: false,
node: true
}
},

// test files
{
files: ['tests/**/*.js'],
excludedFiles: ['tests/dummy/**/*.js'],
env: {
embertest: true
}
}
]
};

0 comments on commit 5504295

Please sign in to comment.