When importing a module that exports an object the old way: ``` js // a.js module.exports = {}; // b.js import A from './a'; ``` This results in: > No default export found in module When the module you're trying to import is updated to the new syntax, it seems to be valid: ``` js // a.js export default {}; // b.js import A from './a'; ``` Unfortunately this is not possible in my case. I can disable the rule for this file as a workaround, but this should be possible right?