Globally disable eslint “import/no-anonymous-default-export” on vscode

Allow me to introduce you to the coolest default override in the world: anonymous default exports.
Looking at the code block above, there’s something gracefully compact about a file whose only export is the default of a nameless name.
If you use VSCode, it’s easy to override across your entire dev environment:
Step 1: On VSCode, open your user preference settings.json
Step 2: Add this:
"eslint.options": {
"import/no-anonymous-default-export": [
"error",
{
"allowArray": true,
"allowArrowFunction": true,
"allowAnonymousClass": true,
"allowAnonymousFunction": true,
"allowCallExpression": true, // The true value here is for backward compatibility
"allowLiteral": true,
"allowObject": true
}
]
},
That’s it!