Answers for "import/no-anonymous-default-export"

0

import/no-anonymous-default-export

"import/no-anonymous-default-export": ["error", {
  "allowArray": false,
  "allowArrowFunction": false,
  "allowAnonymousClass": false,
  "allowAnonymousFunction": false,
  "allowCallExpression": true, // The true value here is for backward compatibility
  "allowLiteral": false,
  "allowObject": false
}]
Posted by: Guest on April-16-2021

Code answers related to "import/no-anonymous-default-export"

Browse Popular Code Answers by Language