diff --git a/eslint/styles/no-default-export.js b/eslint/styles/no-default-export.js index 8638ff8..aaa2868 100644 --- a/eslint/styles/no-default-export.js +++ b/eslint/styles/no-default-export.js @@ -8,7 +8,8 @@ export const noDefaultExport = [ "error", { selector: "ExportDefaultDeclaration", - message: "Prefer named exports", + message: + "Please use named exports instead. Named exports ensure consistent naming and make it easier to auto-import symbols.", }, ], },