ForestAdmin/lumber

View on GitHub

Showing 79 of 79 total issues

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

const buildReference = (collectionName, referencedCollection, field) => {
  if (referencedCollection) {
    return {
      from: { collectionName, fieldName: field.name },
      to: { collectionName: referencedCollection },
Severity: Major
Found in services/analyzer/mongo-hasmany-analyzer.js and 1 other location - About 1 hr to fix
services/analyzer/mongo-references-analyzer.js on lines 21..29

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 60.

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

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

  add(key, options, promise = null) {
    spinnies.add(key, options);

    const spinner = {
      succeed(succeedOptions) {
Severity: Minor
Found in services/spinners.js - About 1 hr to fix

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

    function analyzeMongoCollections(databaseConnection) {
      const schema = {};
    
      return databaseConnection.collections()
        .then(async (collections) => {
    Severity: Minor
    Found in services/analyzer/mongo-collections-analyzer.js - About 1 hr to fix

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

        async loginWithEmailOrTokenArgv(config) {
          try {
            const { email, token } = config;
            let { password } = config;
      
      
      Severity: Minor
      Found in services/authenticator.js - About 1 hr to fix

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

              if (!this.envConfig.email) {
                this.prompts.push({
                  type: 'input',
                  name: 'email',
                  message: 'What\'s your email address? ',
        Severity: Major
        Found in services/prompter/user-prompts.js and 1 other location - About 1 hr to fix
        services/prompter/database-prompts.js on lines 71..81

        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 59.

        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.isOptionRequested('dbName')) {
              this.prompts.push({
                type: 'input',
                name: 'dbName',
                message: 'What\'s the database name?',
        Severity: Major
        Found in services/prompter/database-prompts.js and 1 other location - About 1 hr to fix
        services/prompter/user-prompts.js on lines 21..31

        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 59.

        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

        Function ColumnTypeGetter has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

        function ColumnTypeGetter(databaseConnection, schema, allowWarning = true) {
          const queryInterface = databaseConnection.getQueryInterface();
        
          function isDialect(dialect) {
            return queryInterface.sequelize.options.dialect === dialect;
        Severity: Minor
        Found in services/analyzer/sequelize-column-type-getter.js - About 1 hr 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

        Function handleSsl has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

          handleSsl() {
            if (this.isOptionRequested('ssl')) {
              const { ssl } = this.program;
              if (ssl) {
                try {
        Severity: Minor
        Found in services/prompter/database-prompts.js - About 1 hr 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

        Function handleSsl has 26 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          handleSsl() {
            if (this.isOptionRequested('ssl')) {
              const { ssl } = this.program;
              if (ssl) {
                try {
        Severity: Minor
        Found in services/prompter/database-prompts.js - About 1 hr to fix

          Function analyzeFields has 26 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          async function analyzeFields(queryInterface, tableName, config) {
            const dialect = queryInterface.sequelize.getDialect();
            let columnsByName;
          
            // Workaround bug in sequelize/dialects/mysql/query-generator#describe
          Severity: Minor
          Found in services/analyzer/sequelize-tables-analyzer.js - About 1 hr to fix

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

                  ({ email } = await inquirer.prompt([{
                    type: 'input',
                    name: 'email',
                    message: 'What\'s your email address?',
                    validate: (input) => {
            Severity: Major
            Found in lumber-login.js and 1 other location - About 1 hr to fix
            services/authenticator.js on lines 180..188

            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 55.

            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

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

                }, {
                  type: 'input',
                  name: 'email',
                  message: 'What\'s your email address?',
                  validate: (input) => {
            Severity: Major
            Found in services/authenticator.js and 1 other location - About 1 hr to fix
            lumber-login.js on lines 34..42

            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 55.

            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

            Function parseGeneric has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

              parseGeneric() {
                const nulls = ['NULL'];
                const falses = ['false', 'FALSE', 'b\'0\'', '((0))'];
                const trues = ['true', 'TRUE', 'b\'1\'', '((1))'];
                const isDate = ['TIMESTAMP', 'DATETIME', 'DATE', 'TIME'];
            Severity: Minor
            Found in services/analyzer/sequelize-default-value.js - About 55 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

            Function getDialect has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

              getDialect(dbConnectionUrl, dbDialect) {
                if (dbConnectionUrl) {
                  if (dbConnectionUrl.startsWith('postgres://')) { return 'postgres'; }
                  if (dbConnectionUrl.startsWith('mysql://')) { return 'mysql'; }
                  if (dbConnectionUrl.startsWith('mssql://')) { return 'mssql'; }
            Severity: Minor
            Found in services/database.js - About 55 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

            Function loginWithEmailOrTokenArgv has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

              async loginWithEmailOrTokenArgv(config) {
                try {
                  const { email, token } = config;
                  let { password } = config;
            
            
            Severity: Minor
            Found in services/authenticator.js - About 55 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

            const persons = [
              {
                _id: ObjectID(),
                name: 'James Cameron',
              },
            Severity: Minor
            Found in test-fixtures/mongo/many-objectid-fields-model.js and 1 other location - About 55 mins to fix
            test-fixtures/mongo/hasmany-model.js on lines 4..17

            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 53.

            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

            const persons = [
              {
                _id: ObjectID(),
                name: 'James Cameron',
              },
            Severity: Minor
            Found in test-fixtures/mongo/hasmany-model.js and 1 other location - About 55 mins to fix
            test-fixtures/mongo/many-objectid-fields-model.js on lines 4..17

            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 53.

            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

            Identical blocks of code found in 3 locations. Consider refactoring.
            Open

              constructor(requests, envConfig, prompts, program) {
                super(requests);
                this.envConfig = envConfig;
                this.prompts = prompts;
                this.program = program;
            Severity: Major
            Found in services/prompter/application-prompts.js and 2 other locations - About 50 mins to fix
            services/prompter/database-prompts.js on lines 13..18
            services/prompter/user-prompts.js on lines 4..9

            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 52.

            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

            Identical blocks of code found in 3 locations. Consider refactoring.
            Open

              constructor(requests, envConfig, prompts, program) {
                super(requests);
                this.envConfig = envConfig;
                this.prompts = prompts;
                this.program = program;
            Severity: Major
            Found in services/prompter/user-prompts.js and 2 other locations - About 50 mins to fix
            services/prompter/application-prompts.js on lines 4..9
            services/prompter/database-prompts.js on lines 13..18

            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 52.

            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

            Identical blocks of code found in 3 locations. Consider refactoring.
            Open

              constructor(requests, envConfig, prompts, program) {
                super(requests);
                this.envConfig = envConfig;
                this.prompts = prompts;
                this.program = program;
            Severity: Major
            Found in services/prompter/database-prompts.js and 2 other locations - About 50 mins to fix
            services/prompter/application-prompts.js on lines 4..9
            services/prompter/user-prompts.js on lines 4..9

            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 52.

            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

            Severity
            Category
            Status
            Source
            Language