alecxe/eslint-plugin-protractor

View on GitHub

Showing 74 of 74 total issues

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

module.exports = function (cssSelector) {
try {
var result = parser.parse(cssSelector)
} catch (err) {
// ignore parsing errors - we don't want it to fail miserably on a target machine during a ESLint run
Severity: Minor
Found in lib/extract-class-names.js - About 35 mins to fix

Function create has a Cognitive Complexity of 7 (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-raw-id.js - About 35 mins to fix

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

module.exports = function (cssSelector) {
try {
var result = parser.parse(cssSelector)
} catch (err) {
// ignore parsing errors - we don't want it to fail miserably on a target machine during a ESLint run
Severity: Minor
Found in lib/extract-attributes.js - About 35 mins to fix

Function create has a Cognitive Complexity of 7 (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/valid-by-id.js - About 35 mins to fix

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

create: function (context) {
return {
'CallExpression': function (node) {
if ((node.callee.object || {}).name !== 'by' ||
(node.callee.property || {}).name !== 'tagName') {
Severity: Minor
Found in lib/rules/valid-by-tagname.js - About 35 mins to fix

Avoid too many return statements within this function.
Open

return false
Severity: Major
Found in lib/is-element-finder.js - About 30 mins to fix

Function create has a Cognitive Complexity of 6 (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-angular-attributes.js - About 25 mins to fix

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

module.exports = function (node) {
var property = node.callee.property
var isThen = property && property.name === 'then' && node.arguments
if (isThen) {
var argument = node.arguments[0]
Severity: Minor
Found in lib/is-then-callback.js - About 25 mins to fix

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

create: function (context) {
// do nothing if appropriate settings are not present
var settings = context.settings
if (!settings || !settings[PLUGIN_NAME] || !settings[PLUGIN_NAME].paths || !settings[PLUGIN_NAME].paths.po) {
return {}
Severity: Minor
Found in lib/rules/no-expect-in-po.js - About 25 mins to fix

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

module.exports = function (node) {
var object = node.callee.object
var property = node.callee.property
 
if (object && property && property.name === 'get') {
Severity: Minor
Found in lib/is-browser-get.js - About 25 mins to fix

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

create: function (context) {
// do nothing if appropriate settings are not present
var settings = context.settings
if (!settings || !settings[PLUGIN_NAME] || !settings[PLUGIN_NAME].paths || !(settings[PLUGIN_NAME].paths.po || settings[PLUGIN_NAME].paths.specs)) {
return {}
Severity: Minor
Found in lib/rules/no-execute-script.js - About 25 mins to fix

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

module.exports = function (node) {
var callee = node.callee
 
// left part of "expect()"
if (callee && callee.name === 'expect') {
Severity: Minor
Found in lib/is-expect.js - About 25 mins to fix

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

create: function (context) {
return {
MemberExpression: function (node) {
var property = node.property
 
 
Severity: Minor
Found in lib/rules/no-array-finder-methods.js - About 25 mins to fix

Function create has a Cognitive Complexity of 6 (exceeds 5 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 25 mins to fix
Severity
Category
Status
Source
Language