routie dev init since i didn't adhere to any proper guidance up until now
This commit is contained in:
+47
@@ -0,0 +1,47 @@
|
||||
import { a as createRule, n as sourceType, r as getValue } from "../utils.mjs";
|
||||
//#region src/rules/no-default-export/no-default-export.ts
|
||||
var no_default_export_default = createRule({
|
||||
name: "no-default-export",
|
||||
meta: {
|
||||
type: "suggestion",
|
||||
docs: { description: "Forbid default exports." },
|
||||
schema: [],
|
||||
messages: {
|
||||
preferNamed: "Prefer named exports.",
|
||||
noAliasDefault: "Do not alias `{{local}}` as `default`. Just export `{{local}}` itself instead."
|
||||
}
|
||||
},
|
||||
defaultOptions: [],
|
||||
create(context) {
|
||||
if (sourceType(context) !== "module") return {};
|
||||
const { sourceCode } = context;
|
||||
return {
|
||||
ExportDefaultDeclaration(node) {
|
||||
const { loc } = sourceCode.getFirstTokens(node)[1] || {};
|
||||
context.report({
|
||||
node,
|
||||
messageId: "preferNamed",
|
||||
loc
|
||||
});
|
||||
},
|
||||
ExportNamedDeclaration(node) {
|
||||
for (const specifier of node.specifiers.filter((specifier) => getValue(specifier.exported) === "default")) {
|
||||
const { loc } = sourceCode.getFirstTokens(node)[1] || {};
|
||||
if (specifier.type === "ExportDefaultSpecifier") context.report({
|
||||
node,
|
||||
messageId: "preferNamed",
|
||||
loc
|
||||
});
|
||||
else if (specifier.type === "ExportSpecifier") context.report({
|
||||
node,
|
||||
messageId: "noAliasDefault",
|
||||
data: { local: getValue(specifier.local) },
|
||||
loc
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
});
|
||||
//#endregion
|
||||
export { no_default_export_default as t };
|
||||
Reference in New Issue
Block a user