Skip to content

Commit

Permalink
Remove usage of eslint-plugin-node
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Jun 14, 2022
1 parent e0aba43 commit ae62ef5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions test-app/.eslintrc.js
Expand Up @@ -48,10 +48,6 @@ module.exports = {
browser: false,
node: true
},
plugins: ['node'],
rules: Object.assign({}, require('eslint-plugin-node').configs.recommended.rules, {
// add your custom rules and overrides for node files here
})
}
]
};
2 changes: 1 addition & 1 deletion test-app/ember-cli-build.js
Expand Up @@ -8,7 +8,7 @@ module.exports = function(defaults) {
});

try {
const { maybeEmbroider } = require('@embroider/test-setup'); // eslint-disable-line node/no-missing-require
const { maybeEmbroider } = require('@embroider/test-setup');
return maybeEmbroider(app);
} catch (e) {
// This exists, so that we can continue to support node 10 for some of our
Expand Down

0 comments on commit ae62ef5

Please sign in to comment.