lib/rules/use-count-method.js
'use strict' /** * @fileoverview Recommend using `count()` instead of `then()` and `length` * @author Alexander Afanasyev */ var isElementArrayFinder = require('../is-element-array-finder')var isThenCallBack = require('../is-then-callback')var isExpect = require('../is-expect') module.exports = { meta: { schema: [] }, Function `create` has a Cognitive Complexity of 35 (exceeds 5 allowed). Consider refactoring.
Function `create` has 39 lines of code (exceeds 25 allowed). Consider refactoring. create: function (context) { return {Function `MemberExpression` has 35 lines of code (exceeds 25 allowed). Consider refactoring. MemberExpression: function (node) { if (node.property && node.object && node.property.name === 'length') { // remember the variable name the ".length" was used on var variableName = node.object.name // find out if we are in an expect() var expectAncestor var thenAncestor var thenCallback var ancestors = context.getAncestors(node) for (var i = 0; i < ancestors.length; i++) { expectAncestor = ancestors[i] // continue if not inside expect if (!(expectAncestor && expectAncestor.type === 'CallExpression' && isExpect(expectAncestor))) { continue } // find out if we are inside a then callback ancestors = context.getAncestors(expectAncestor) for (var j = 0; j < ancestors.length; j++) { thenAncestor = ancestors[j] // continue if not a call expression if (!(thenAncestor && thenAncestor.type === 'CallExpression')) { continue } thenCallback = isThenCallBack(thenAncestor) // continue if not a "then" callback with at least 1 argument if (!(thenCallback && thenCallback.params && thenCallback.params.length > 0)) { continue } var thenCallbackArgument = thenCallback.params[0] // continue if not the same variable used as a "then" callback function argument if (!(thenCallbackArgument && thenCallbackArgument.name === variableName)) { continue } // check that it was an ElementArrayFinder resolution if (thenAncestor.callee && thenAncestor.callee.object && isElementArrayFinder(thenAncestor.callee.object)) { context.report({ node: node, message: 'Array.length inside promise resolution function detected. Use count() instead.' }) return } } } } } } }}