We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ae31ff commit 3f4a131Copy full SHA for 3f4a131
.eslintrc.js
@@ -178,10 +178,12 @@ module.exports = {
178
'node/no-mixed-requires': 2,
179
// Using path.join() is often not needed when using only core Node.js APIs
180
'node/no-path-concat': 0,
181
+ // TODO: remove once bug in eslint-plugin-node is fixed:
182
+ // https://github.com/mysticatea/eslint-plugin-node/issues/250
183
'node/no-unsupported-features/es-syntax': [
184
'error',
185
{
- ignores: ['modules'],
186
+ ignores: ['modules', 'dynamicImport'],
187
},
188
],
189
// Browser globals should not use `require()`. Non-browser globals should
0 commit comments