We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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([ '...' ]);
Activity