We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Right now you have to either use dns.promises.setServers([ ... ]) or use the ignore line.
dns.promises.setServers([ ... ])
dns.promises.setServers does not actually return a Promise, and will actually error if you call it with .then().
dns.promises.setServers
.then()
// eslint-disable-next-line n/prefer-promises/dns dns.setServers([ '...' ]);
The text was updated successfully, but these errors were encountered:
Try eslint-plugin-n, it is the maintained version of this module.
eslint-plugin-n
We switched to it in eg. eslint-config-standard / standard and it is maintained by me and other members of the official ESLint community organization.
eslint-config-standard
standard
If it isn't fixed there, try creating an issue there as well.
Sorry, something went wrong.
No branches or pull requests
Right now you have to either use
dns.promises.setServers([ ... ])
or use the ignore line.dns.promises.setServers
does not actually return a Promise, and will actually error if you call it with.then()
.The text was updated successfully, but these errors were encountered: