alecxe/eslint-plugin-protractor

View on GitHub

Showing 74 of 74 total issues

Function create has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

create: function (context) {
return {
'CallExpression': function (node) {
if (node.arguments && node.arguments.length && node.arguments[0].hasOwnProperty('value')) {
if (isCSSLocator(node)) {
Severity: Minor
Found in lib/rules/no-bootstrap-classes.js - About 1 hr to fix

Function create has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

create: function (context) {
return {
'CallExpression': function (node) {
var result = isBrowserGet(node)
 
 
Severity: Minor
Found in lib/rules/no-get-in-it.js - About 1 hr to fix

Function create has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

create: function (context) {
var prohibitedClasses = [
'ng-scope',
'ng-isolate-scope',
'ng-binding',
Severity: Minor
Found in lib/rules/no-angular-classes.js - About 1 hr to fix

Function create has 47 lines of code (exceeds 25 allowed). Consider refactoring.
Open

create: function (context) {
var funcInfo = {
upper: null,
codePath: null,
hasReturn: false,
Severity: Minor
Found in lib/rules/array-callback-return.js - About 1 hr to fix

Function create has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

create: function (context) {
return {
'CallExpression': function (node) {
var object = node.callee.object
var property = node.callee.property
Severity: Minor
Found in lib/rules/by-css-shortcut.js - About 1 hr to fix

Function exports has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

module.exports = function (node) {
var object = node.callee.object
var property = node.callee.property
 
if (object && property) {
Severity: Minor
Found in lib/is-browser-execute-script.js - About 1 hr to fix

Function create has 41 lines of code (exceeds 25 allowed). Consider refactoring.
Open

create: function (context) {
// --------------------------------------------------------------------------
// Helpers
// --------------------------------------------------------------------------
 
 
Severity: Minor
Found in lib/rules/no-promise-in-if.js - About 1 hr to fix

Function create has 39 lines of code (exceeds 25 allowed). Consider refactoring.
Open

create: function (context) {
return {
MemberExpression: function (node) {
if (node.property && node.object && node.property.name === 'length') {
// remember the variable name the ".length" was used on
Severity: Minor
Found in lib/rules/use-count-method.js - About 1 hr to fix

Function create has 38 lines of code (exceeds 25 allowed). Consider refactoring.
Open

create: function (context) {
function getFirstArgumentValue (methodArguments) {
var firstArgument = methodArguments[0]
 
if (firstArgument) {
Severity: Minor
Found in lib/rules/use-first-last.js - About 1 hr to fix

Function create has 38 lines of code (exceeds 25 allowed). Consider refactoring.
Open

create: function (context) {
// locators collects locators grouped by type, e.g.: {css: [".test", "div:first-of-type"], id: ["myid1", "myid2"]}
var locators = {}
 
function arrayEquals (a, b) {
Severity: Minor
Found in lib/rules/no-repetitive-locators.js - About 1 hr to fix

Function exports has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

module.exports = function (node) {
var object = node.callee.object
var property = node.callee.property
 
var insideBy = object && property && object.name === 'by'
Severity: Minor
Found in lib/get-locator.js - About 1 hr to fix

Function MemberExpression has 35 lines of code (exceeds 25 allowed). Consider refactoring.
Open

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
 
 
Severity: Minor
Found in lib/rules/use-count-method.js - About 1 hr to fix

Similar blocks of code found in 2 locations. Consider refactoring.
Open

if (property && (property.name === 'getInnerHtml' || property.name === 'getOuterHtml')) {
if (node.object && isElementFinder(node.object)) {
context.report({
node: property,
message: 'Unexpected "' + property.name + '()"'
Severity: Major
Found in lib/rules/no-get-inner-outer-html.js and 1 other location - About 1 hr to fix
lib/rules/no-get-raw-id.js on lines 19..26

Similar blocks of code found in 2 locations. Consider refactoring.
Open

if (property && property.name === 'getRawId') {
if (node.object && isElementFinder(node.object)) {
context.report({
node: property,
message: 'Unexpected "' + property.name + '()". Use "getId()" instead'
Severity: Major
Found in lib/rules/no-get-raw-id.js and 1 other location - About 1 hr to fix
lib/rules/no-get-inner-outer-html.js on lines 20..27

Function create has 32 lines of code (exceeds 25 allowed). Consider refactoring.
Open

create: function (context) {
return {
CallExpression: function (node) {
// element finders
if (isElementFinder(node)) {
Severity: Minor
Found in lib/rules/valid-locator-type.js - About 1 hr to fix

Function create has 32 lines of code (exceeds 25 allowed). Consider refactoring.
Open

create: function (context) {
function isElementAllChained (node) {
var property = node.property
if (property && property.name === 'element') {
var parent = node.parent
Severity: Minor
Found in lib/rules/correct-chaining.js - About 1 hr to fix

Function create has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

create: function (context) {
return {
'CallExpression': function (node) {
var object = node.callee.object
 
 
Severity: Minor
Found in lib/rules/no-describe-selectors.js - About 1 hr to fix

Similar blocks of code found in 2 locations. Consider refactoring.
Open

function is$ (node) {
return node.callee.name === '$' || (node.callee.property && node.callee.property.name === '$')
}
Severity: Major
Found in lib/rules/valid-locator-type.js and 1 other location - About 1 hr to fix
lib/rules/valid-locator-type.js on lines 49..51

Function create has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

create: function (context) {
var maxDepth = context.options.length ? context.options[0] : 5
 
return {
'CallExpression': function (node) {
Severity: Minor
Found in lib/rules/limit-selector-depth.js - About 1 hr to fix

Function create has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

create: function (context) {
var attributeToLocatorMap = {
'ng-model': ['by.model()'],
'ng-bind': ['by.binding()', 'by.exactBinding()'],
'ng-repeat': ['by.repeater()', 'by.exactRepeater()'],
Severity: Minor
Found in lib/rules/use-angular-locators.js - About 1 hr to fix
Severity
Category
Status
Source
Language