ludoviclefevre/hexo-generator-seo-friendly-sitemap

View on GitHub

Showing 7 of 11 total issues

Function post has 48 lines of code (exceeds 25 allowed). Consider refactoring.
Open

const post = function(locals, config) {
  const get = function() {
    if (locals.posts.length === 0) {
      return
    }
Severity: Minor
Found in lib/post.js - About 1 hr to fix

    Function get has 43 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      const get = function() {
        if (locals.posts.length === 0) {
          return
        }
        const posts = _(locals.posts.toArray())
    Severity: Minor
    Found in lib/post.js - About 1 hr to fix

      Function page has 34 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      const page = function(locals, config) {
        const isExcluded = function(page) {
          if (page.sitemap === false) {
            return true
          }
      Severity: Minor
      Found in lib/page.js - About 1 hr to fix

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

        const seoFriendlySitemap = function(locals) {
          const config = this.config,
            posts = require('./post')(locals, config),
            pages = require('./page')(locals, config),
            categories = require('./category')(locals, config),
        Severity: Minor
        Found in lib/generator.js - About 1 hr to fix

          Function tag has 30 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          const tag = function(locals, config) {
            const get = function() {
              if (config.sitemap && config.sitemap.tag === false) {
                return
              }
          Severity: Minor
          Found in lib/tag.js - About 1 hr to fix

            Function category has 30 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            const category = function(locals, config) {
              const get = function() {
                if (config.sitemap && config.sitemap.category === false) {
                  return
                }
            Severity: Minor
            Found in lib/category.js - About 1 hr to fix

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

              const page = function(locals, config) {
                const isExcluded = function(page) {
                  if (page.sitemap === false) {
                    return true
                  }
              Severity: Minor
              Found in lib/page.js - About 35 mins to fix

              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

              Severity
              Category
              Status
              Source
              Language