-
-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
no-unsupported-features/node-builtins
does not check for fs/promises
#243
Comments
https://github.com/mysticatea/eslint-plugin-node#readme should then probably get an update for |
@thernstig, that is a good idea, and it should probably be a separate issue. 👍 |
Done: #260 |
Maybe this is fixed in #261 |
The original way to import the
fs
Promises API was via one of these options:In Node.js v14, they added the ability to import the
fs
Promises API viafs/promises
so you can do things like:eslint-plugin-node
doesn't seem to check to make sure thatfs/promises
is available in the supported versions of Node.js listed inpackage.json
.The text was updated successfully, but these errors were encountered: