FuelFrontend/generator-smacss

View on GitHub
app/index.js

Summary

Maintainability
F
3 days
Test Coverage

File index.js has 413 lines of code (exceeds 250 allowed). Consider refactoring.
Open

'use strict';
var yeoman = require('yeoman-generator'),
    fs = require('fs'),
    util = require('util'),
    path = require('path'),
Severity: Minor
Found in app/index.js - About 5 hrs to fix

    Function install has 62 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    smacssGenerator.prototype.install = function install() {
        // Installation context object
        var installContext = {};
        installContext.appPath = process.cwd() + "/"+ this.appName;
        process.chdir(installContext.appPath); // activating app directory for installation
    Severity: Major
    Found in app/index.js - About 2 hrs to fix

      Function askAngularModules has 51 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      smacssGenerator.prototype.askAngularModules = function askAngularModules() {
          if(this.appType === 'typeAngularApp') {
              var done = this.async();
              var prompts = [{
                  name: 'angularModules',
      Severity: Major
      Found in app/index.js - About 2 hrs to fix

        Function askAppType has 41 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        smacssGenerator.prototype.askAppType = function askAppType() {
            var done = this.async();
        
            var prompts = [{
                name: 'appName',
        Severity: Minor
        Found in app/index.js - About 1 hr to fix

          Function askAppLibraries has 32 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          smacssGenerator.prototype.askAppLibraries = function askAppLibraries() {
              if(this.appType === 'typeFullPackWebApp' ||
                 this.appType === 'typeAdminWebApp') {
                  var done = this.async();
                  var prompts = [{
          Severity: Minor
          Found in app/index.js - About 1 hr to fix

            Function scaffoldFolders has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            smacssGenerator.prototype.scaffoldFolders = function scaffoldFolders() {
                this.log(
                  chalk.yellow('\n┌──────────────────────────────────────────────────────────────┐ \n' +
                                 '| Creating the project structure                               | \n' +
                                 '└──────────────────────────────────────────────────────────────┘ ')
            Severity: Minor
            Found in app/index.js - About 45 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

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                if(this.appType === "typeAdminWebApp") {
                    this.copy("_" + this.appType + "/fonts/_fontawesome-webfont.eot", this.appName + "/app/fonts/fontawesome-webfont.eot");
                    this.copy("_" + this.appType + "/fonts/_fontawesome-webfont.svg", this.appName + "/app/fonts/fontawesome-webfont.svg");
                    this.copy("_" + this.appType + "/fonts/_fontawesome-webfont.ttf", this.appName + "/app/fonts/fontawesome-webfont.ttf");
                    this.copy("_" + this.appType + "/fonts/_fontawesome-webfont.woff", this.appName + "/app/fonts/fontawesome-webfont.woff");
            Severity: Major
            Found in app/index.js and 1 other location - About 6 hrs to fix
            app/index.js on lines 281..287

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 164.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

              if(this.appType === 'typeAdminWebApp') {
                this.copy("_" + this.appType + "/_tables.html", this.appName + "/app/tables.html");
                this.copy("_" + this.appType + "/_forms.html", this.appName + "/app/forms.html");
                this.copy("_" + this.appType + "/_bootstrap-elements.html", this.appName + "/app/bootstrap-elements.html");
                this.copy("_" + this.appType + "/_bootstrap-grid.html", this.appName + "/app/bootstrap-grid.html");
            Severity: Major
            Found in app/index.js and 1 other location - About 6 hrs to fix
            app/index.js on lines 324..330

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 164.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

              if(this.appType === 'typeFullPackWebApp' || this.appType === 'typeAngularApp') {
                  this.template("partials/_header.html", this.appName + "/app/partials/_header.html", smacssGenerator.context);
                  this.template("partials/_footer.html", this.appName + "/app/partials/_footer.html", smacssGenerator.context);
              }
            Severity: Minor
            Found in app/index.js and 1 other location - About 55 mins to fix
            app/index.js on lines 413..416

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 54.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

              if(this.appType !== 'typeSimpleWebApp') {
                this.template("dot-files/_jshintrc", this.appName + "/.jshintrc", smacssGenerator.context);
                this.template("dot-files/_jshintignore", this.appName + "/.jshintignore", smacssGenerator.context);
              }
            Severity: Minor
            Found in app/index.js and 1 other location - About 55 mins to fix
            app/index.js on lines 275..278

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 54.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            There are no issues that match your filters.

            Category
            Status