Showing 8 of 8 total issues
Function match
has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring. Open
Router.prototype.match = function(pattern, shorthand, _options) {
var options = _options;
if (!options && typeof shorthand === 'object') {
options = shorthand;
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function resources
has 38 lines of code (exceeds 25 allowed). Consider refactoring. Open
Router.prototype.resources = function(name, options, fn) {
if (typeof options === 'function') {
fn = options;
options = {};
}
Function match
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
Router.prototype.match = function(pattern, shorthand, _options) {
var options = _options;
if (!options && typeof shorthand === 'object') {
options = shorthand;
}
Function resource
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
Router.prototype.resource = function(name, options, fn) {
if (typeof options === 'function') {
fn = options;
options = {};
}
Function _route
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Router.prototype._route = function(method, pattern, controller, action, helper) {
Function qpath
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
Namespace.prototype.qpath = function(name) {
var qual = name;
var ns = this;
while (ns) {
qual = (ns.name.length)
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function _filterActions
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Router.prototype._filterActions = function(options, actions) {
if (options.only) {
actions = Array.isArray(options.only) ? options.only : [ options.only ];
} else if (options.except) {
var except = Array.isArray(options.except) ? options.except : [ options.except ];
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function Namespace
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function Namespace(name, options, parent) {
if (typeof name === 'object') {
options = name;
name = undefined;
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"