eslint-plugin-node
eslint-plugin-node copied to clipboard
Fix ES6 modules support
Node has stable support for ES6 modules since 13.2.0.
On my .eslintrc.json file, under rules I added modules to the ignores array and the error disapeared:
"node/no-unsupported-features/es-syntax": [
"error",
{
"version": ">=8.0.0",
"ignores": ["modules"]
}
],
But should be updated, as you mentioned.