alecxe/eslint-plugin-protractor

View on GitHub

Showing 74 of 74 total issues

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

function isCallbackOfArrayMethod (node) {
while (node) {
var parent = node.parent
 
switch (parent.type) {
Severity: Minor
Found in lib/rules/array-callback-return.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 39..41

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

create: function (context) {
// keeping the processed CSS selectors to check the next one against
var selectors = []
 
return {
Severity: Minor
Found in lib/rules/no-repetitive-selectors.js - About 1 hr to fix

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

create: function (context) {
function isThenCallBack (node) {
var property = node.callee.property
var isThen = property && property.name === 'then' && node.arguments
if (isThen) {
Severity: Minor
Found in lib/rules/use-promise-all.js - About 1 hr to fix

Function create has 29 lines of code (exceeds 25 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/empty-script.js - About 1 hr to fix

Function CallExpression has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

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

Function create has 28 lines of code (exceeds 25 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 a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

create: function (context) {
function isBareExpression (node) {
return node.parent.type === 'ExpressionStatement'
}
 
 
Severity: Minor
Found in lib/rules/bare-element-finders.js - About 1 hr to fix

Function create has a Cognitive Complexity of 10 (exceeds 5 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 10 (exceeds 5 allowed). Consider refactoring.
Open

create: function (context) {
return {
'CallExpression': function (node) {
if (node.arguments && node.arguments[0]) {
var result = isBrowserGet(node)
Severity: Minor
Found in lib/rules/no-absolute-url.js - About 1 hr to fix

Function create has a Cognitive Complexity of 10 (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 (isLocator(node, 'className')) {
Severity: Minor
Found in lib/rules/no-compound-classes.js - About 1 hr to fix

Function create has a Cognitive Complexity of 10 (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-invalid-selectors.js - About 1 hr to fix

Function CallExpression has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

'CallExpression': function (node) {
if (node.arguments && node.arguments.length && node.arguments[0].hasOwnProperty('value')) {
if (isCSSLocator(node)) {
// we don't want to report the same repeated part multiple times
var alreadyReported = []
Severity: Minor
Found in lib/rules/no-repetitive-selectors.js - About 1 hr to fix

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

module.exports = function (node) {
var callee = node.callee
if (!callee) {
return false
}
Severity: Minor
Found in lib/is-element-finder.js - About 55 mins to fix

Function create has a Cognitive Complexity of 9 (exceeds 5 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 55 mins to fix

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

create: function (context) {
return {
MemberExpression: function (node) {
var property = node.property
 
 
Severity: Minor
Found in lib/rules/no-get-inner-outer-html.js - About 45 mins to fix

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

if (repeaterValue.indexOf('track by') > 0) {
context.report({
node: node.arguments[0],
message: 'Unexpected "track by" inside a by.repeater() locator.'
})
Severity: Major
Found in lib/rules/use-simple-repeaters.js and 2 other locations - About 40 mins to fix
lib/rules/no-compound-classes.js on lines 21..26
lib/rules/use-simple-repeaters.js on lines 23..28

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

if (locatorValue.indexOf(' ') >= 0) {
context.report({
node: node.arguments[0],
message: 'No compound class names allowed.'
})
Severity: Major
Found in lib/rules/no-compound-classes.js and 2 other locations - About 40 mins to fix
lib/rules/use-simple-repeaters.js on lines 23..28
lib/rules/use-simple-repeaters.js on lines 30..35

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

if (repeaterValue.indexOf('|') > 0) {
context.report({
node: node.arguments[0],
message: 'Unexpected filter inside a by.repeater() locator.'
})
Severity: Major
Found in lib/rules/use-simple-repeaters.js and 2 other locations - About 40 mins to fix
lib/rules/no-compound-classes.js on lines 21..26
lib/rules/use-simple-repeaters.js on lines 30..35

Consider simplifying this complex logical expression.
Open

if (object && property && property.name === 'get') {
var isBrowser = object.name === 'browser'
var isBrowserDriver = object.object && object.object.name === 'browser' &&
object.property && object.property.name === 'driver'
if (isBrowser || isBrowserDriver) {
Severity: Major
Found in lib/is-browser-get.js - About 40 mins to fix
Severity
Category
Status
Source
Language