If you have a file named same as default export, why do you need to name this export? I am not DRY
there.
We have a rule to prevent the anonymous default export, but how can I do the opposite and force an error when somebody is not using an anonymous export?
You don't. That's why you are linking to a linter rule - it's not required, but considered "best practice" by some, because
Basically, people think that if you have
people are more likely to do
but that if you do
people will more consistently do
which makes the code easier to read, because the same function is called the same thing no matter where you import it from.
When you ask
I am assuming you mean how can you force the linter to accept your anonymous default export? You would either need to inline disable the rule:
or update your eslint config to accept it in general.