help wanted
Description
Hey, is there any way to enable the import/named rule for module.exports?
Eg:
//lib.js
const toExport = true
module.exports = {
toExport,
}
//user.js
const {toEpxort} = require('./lib') // here I want it to throw a lint error
console.log(toEpxort)