Showing 31 of 39 total issues
Function processTemplate
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
var processTemplate = function(conf) {
var engine = conf.cOpts.handlebars;
var templateContent = '';
- 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 helper
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
var helper = function(cModule,pPath,hArgs,hOpts,cOpts) {
Function helper
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
var helper = function (cModule,pPath,hArgs,hOpts,cOpts) {
Function helper
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
var helper = function layout(cModule,pPath,hArgs,hOpts,cOpts) {
Function helper
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
var helper = function (cModule,pPath,hArgs,hOpts,cOpts) {
Function helper
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
var helper = function helper(cModule,pPath,hArgs,hOpts,cOpts) {
Function helper
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
var helper = function(cModule,pPath,hArgs,hOpts,cOpts) {
Function helper
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
var helper = function assetPath(cModule,pPath,hArgs,hOpts,cOpts) {
Function helper
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
var helper = function assetS3Url(cModule,pPath,hArgs,hOpts,cOpts) {
Function layout
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
var helper = function layout(cModule,pPath,hArgs,hOpts,cOpts) {
var engine = cOpts.handlebars;
var data = engine.createFrame(hOpts.data || {});
data._isLayout = true;
- 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 dump
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
exports.dump = function dump(opts) {
var format = "json";
if (opts.format) {
- 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"