@mindfiredigital/eslint-plugin-hub
Version:
eslint-plugin-hub is a powerful, flexible ESLint plugin that provides a curated set of rules to enhance code readability, maintainability, and prevent common errors. Whether you're working with vanilla JavaScript, TypeScript, React, or Angular, eslint-plu
62 lines (57 loc) • 1.62 kB
JavaScript
const camelCase = /^[a-z][a-zA-Z0-9]*$/;
module.exports = {
rules: {
'function-camelcase': {
meta: {
type: 'problem',
docs: {
description: 'Enforce camelCase naming convention for function names',
},
schema: [], // No options needed
messages: {
notCamelCase: "Function name '{{name}}' should be in camelCase.",
},
},
create(context) {
function checkFunctionName(node) {
const functionName = node.id && node.id.name;
// Ensure functionName is a string before proceeding
if (typeof functionName !== 'string') {
return;
}
// Check if function name is in camelCase
if (!camelCase.test(functionName)) {
context.report({
node: node.id,
messageId: 'notCamelCase',
data: { name: functionName },
});
}
}
return {
FunctionDeclaration(node) {
checkFunctionName(node);
},
FunctionExpression(node) {
if (
node.parent &&
node.parent.type === 'VariableDeclarator' &&
node.parent.id
) {
checkFunctionName(node.parent);
}
},
ArrowFunctionExpression(node) {
if (
node.parent &&
node.parent.type === 'VariableDeclarator' &&
node.parent.id
) {
checkFunctionName(node.parent);
}
},
};
},
},
},
};