123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- /**
- * @fileoverview Rule to flag non-camelcased identifiers
- * @author Nicholas C. Zakas
- */
-
- "use strict";
-
- //------------------------------------------------------------------------------
- // Rule Definition
- //------------------------------------------------------------------------------
-
- module.exports = {
- meta: {
- type: "suggestion",
-
- docs: {
- description: "enforce camelcase naming convention",
- category: "Stylistic Issues",
- recommended: false,
- url: "https://eslint.org/docs/rules/camelcase"
- },
-
- schema: [
- {
- type: "object",
- properties: {
- ignoreDestructuring: {
- type: "boolean"
- },
- properties: {
- enum: ["always", "never"]
- },
- allow: {
- type: "array",
- items: [
- {
- type: "string"
- }
- ],
- minItems: 0,
- uniqueItems: true
- }
- },
- additionalProperties: false
- }
- ],
-
- messages: {
- notCamelCase: "Identifier '{{name}}' is not in camel case."
- }
- },
-
- create(context) {
-
- const options = context.options[0] || {};
- let properties = options.properties || "";
- const ignoreDestructuring = options.ignoreDestructuring || false;
- const allow = options.allow || [];
-
- if (properties !== "always" && properties !== "never") {
- properties = "always";
- }
-
- //--------------------------------------------------------------------------
- // Helpers
- //--------------------------------------------------------------------------
-
- // contains reported nodes to avoid reporting twice on destructuring with shorthand notation
- const reported = [];
- const ALLOWED_PARENT_TYPES = new Set(["CallExpression", "NewExpression"]);
-
- /**
- * Checks if a string contains an underscore and isn't all upper-case
- * @param {string} name The string to check.
- * @returns {boolean} if the string is underscored
- * @private
- */
- function isUnderscored(name) {
-
- // if there's an underscore, it might be A_CONSTANT, which is okay
- return name.indexOf("_") > -1 && name !== name.toUpperCase();
- }
-
- /**
- * Checks if a string match the ignore list
- * @param {string} name The string to check.
- * @returns {boolean} if the string is ignored
- * @private
- */
- function isAllowed(name) {
- return allow.findIndex(
- entry => name === entry || name.match(new RegExp(entry))
- ) !== -1;
- }
-
- /**
- * Checks if a parent of a node is an ObjectPattern.
- * @param {ASTNode} node The node to check.
- * @returns {boolean} if the node is inside an ObjectPattern
- * @private
- */
- function isInsideObjectPattern(node) {
- let { parent } = node;
-
- while (parent) {
- if (parent.type === "ObjectPattern") {
- return true;
- }
-
- parent = parent.parent;
- }
-
- return false;
- }
-
- /**
- * Reports an AST node as a rule violation.
- * @param {ASTNode} node The node to report.
- * @returns {void}
- * @private
- */
- function report(node) {
- if (reported.indexOf(node) < 0) {
- reported.push(node);
- context.report({ node, messageId: "notCamelCase", data: { name: node.name } });
- }
- }
-
- return {
-
- Identifier(node) {
-
- /*
- * Leading and trailing underscores are commonly used to flag
- * private/protected identifiers, strip them
- */
- const name = node.name.replace(/^_+|_+$/g, ""),
- effectiveParent = (node.parent.type === "MemberExpression") ? node.parent.parent : node.parent;
-
- // First, we ignore the node if it match the ignore list
- if (isAllowed(name)) {
- return;
- }
-
- // MemberExpressions get special rules
- if (node.parent.type === "MemberExpression") {
-
- // "never" check properties
- if (properties === "never") {
- return;
- }
-
- // Always report underscored object names
- if (node.parent.object.type === "Identifier" && node.parent.object.name === node.name && isUnderscored(name)) {
- report(node);
-
- // Report AssignmentExpressions only if they are the left side of the assignment
- } else if (effectiveParent.type === "AssignmentExpression" && isUnderscored(name) && (effectiveParent.right.type !== "MemberExpression" || effectiveParent.left.type === "MemberExpression" && effectiveParent.left.property.name === node.name)) {
- report(node);
- }
-
- /*
- * Properties have their own rules, and
- * AssignmentPattern nodes can be treated like Properties:
- * e.g.: const { no_camelcased = false } = bar;
- */
- } else if (node.parent.type === "Property" || node.parent.type === "AssignmentPattern") {
-
- if (node.parent.parent && node.parent.parent.type === "ObjectPattern") {
- if (node.parent.shorthand && node.parent.value.left && isUnderscored(name)) {
-
- report(node);
- }
-
- const assignmentKeyEqualsValue = node.parent.key.name === node.parent.value.name;
-
- // prevent checking righthand side of destructured object
- if (node.parent.key === node && node.parent.value !== node) {
- return;
- }
-
- const valueIsUnderscored = node.parent.value.name && isUnderscored(name);
-
- // ignore destructuring if the option is set, unless a new identifier is created
- if (valueIsUnderscored && !(assignmentKeyEqualsValue && ignoreDestructuring)) {
- report(node);
- }
- }
-
- // "never" check properties or always ignore destructuring
- if (properties === "never" || (ignoreDestructuring && isInsideObjectPattern(node))) {
- return;
- }
-
- // don't check right hand side of AssignmentExpression to prevent duplicate warnings
- if (isUnderscored(name) && !ALLOWED_PARENT_TYPES.has(effectiveParent.type) && !(node.parent.right === node)) {
- report(node);
- }
-
- // Check if it's an import specifier
- } else if (["ImportSpecifier", "ImportNamespaceSpecifier", "ImportDefaultSpecifier"].indexOf(node.parent.type) >= 0) {
-
- // Report only if the local imported identifier is underscored
- if (node.parent.local && node.parent.local.name === node.name && isUnderscored(name)) {
- report(node);
- }
-
- // Report anything that is underscored that isn't a CallExpression
- } else if (isUnderscored(name) && !ALLOWED_PARENT_TYPES.has(effectiveParent.type)) {
- report(node);
- }
- }
-
- };
-
- }
- };
|