Showing 7 of 11 total issues
Function post
has 48 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const post = function(locals, config) {
const get = function() {
if (locals.posts.length === 0) {
return
}
Function get
has 43 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const get = function() {
if (locals.posts.length === 0) {
return
}
const posts = _(locals.posts.toArray())
Function page
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const page = function(locals, config) {
const isExcluded = function(page) {
if (page.sitemap === false) {
return true
}
Function seoFriendlySitemap
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const seoFriendlySitemap = function(locals) {
const config = this.config,
posts = require('./post')(locals, config),
pages = require('./page')(locals, config),
categories = require('./category')(locals, config),
Function tag
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const tag = function(locals, config) {
const get = function() {
if (config.sitemap && config.sitemap.tag === false) {
return
}
Function category
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const category = function(locals, config) {
const get = function() {
if (config.sitemap && config.sitemap.category === false) {
return
}
Function page
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
Open
const page = function(locals, config) {
const isExcluded = function(page) {
if (page.sitemap === false) {
return 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"