senecajs/seneca

View on GitHub

Showing 177 of 189 total issues

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

require('..')()
  .use(function plugin0() {
    this.add('init:plugin0', function init0() {
      throw new Error('error0')
    })
Severity: Minor
Found in trial/plugin-init-error.js and 1 other location - About 40 mins to fix
trial/plugin-init-error-multiple.js on lines 1..6

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

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

require('..')()
  .use(function plugin0() {
    this.add('init:plugin0', function init0() {
      throw new Error('error0')
    })
Severity: Minor
Found in trial/plugin-init-error-multiple.js and 1 other location - About 40 mins to fix
trial/plugin-init-error.js on lines 1..6

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

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

Consider simplifying this complex logical expression.
Open

        if (data.res || data.result || data.msg) {
            let obj = data.res || data.result || data.msg || {};
            let objstr = util_1.default.inspect(seneca.util.clean(obj))
                .replace(/\s+/g, '')
                .substring(0, datalen);
Severity: Major
Found in lib/logging.js - About 40 mins to fix

    Consider simplifying this complex logical expression.
    Open

        if (data.res || data.result || data.msg) {
          let obj = data.res || data.result || data.msg || {}
    
          let objstr = Util.inspect(seneca.util.clean(obj))
            .replace(/\s+/g, '')
    Severity: Major
    Found in lib/logging.ts - About 40 mins to fix

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

      var __importDefault = (this && this.__importDefault) || function (mod) {
          return (mod && mod.__esModule) ? mod : { "default": mod };
      };
      Severity: Minor
      Found in lib/plugin.js and 2 other locations - About 40 mins to fix
      lib/common.js on lines 3..5
      seneca.js on lines 3..5

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

      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 ActArgu: any = Argu('act', {
        props: One(Empty(String), Object),
        moreprops: Skip(Object),
        reply: Skip(Function),
      })
      Severity: Minor
      Found in lib/act.ts and 1 other location - About 40 mins to fix
      lib/prior.ts on lines 24..28

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

      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 ActArgu: any = Argu('prior', {
        props: One(Empty(String), Object),
        moreprops: Skip(Object),
        reply: Skip(Function),
      })
      Severity: Minor
      Found in lib/prior.ts and 1 other location - About 40 mins to fix
      lib/act.ts on lines 25..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 48.

      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 3 locations. Consider refactoring.
      Open

      var __importDefault = (this && this.__importDefault) || function (mod) {
          return (mod && mod.__esModule) ? mod : { "default": mod };
      };
      Severity: Minor
      Found in lib/common.js and 2 other locations - About 40 mins to fix
      lib/plugin.js on lines 4..6
      seneca.js on lines 3..5

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

      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 3 locations. Consider refactoring.
      Open

      var __importDefault = (this && this.__importDefault) || function (mod) {
          return (mod && mod.__esModule) ? mod : { "default": mod };
      };
      Severity: Minor
      Found in seneca.js and 2 other locations - About 40 mins to fix
      lib/common.js on lines 3..5
      lib/plugin.js on lines 4..6

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

      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 make_standard_act_log_entry has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

        actdef: any,
        msg: any,
        meta: any,
        origmsg: any,
        ctxt: any
      Severity: Minor
      Found in lib/common.ts - About 35 mins to fix

        Function handle_inward_break has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            handle_inward_break: function (inward, act_instance, data, actdef, origmsg) {
        Severity: Minor
        Found in lib/act.js - About 35 mins to fix

          Function make_standard_act_log_entry has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          function make_standard_act_log_entry(actdef, msg, meta, origmsg, ctxt) {
          Severity: Minor
          Found in lib/common.js - About 35 mins to fix

            Function fix_args has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

              function(this: any, origargs: any, patargs: any, msgargs: any, custom: any) {
            Severity: Minor
            Found in lib/api.ts - About 35 mins to fix

              Function translate has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                this: any,
                from_in: any,
                to_in: any,
                pick_in?: any,
                flags?: {
              Severity: Minor
              Found in lib/api.ts - About 35 mins to fix

                Function handle_inward_break has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    inward: any,
                    act_instance: any,
                    data: any,
                    actdef: any,
                    origmsg: any
                Severity: Minor
                Found in lib/act.ts - About 35 mins to fix

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

                      execute_action: function (execspec, act_instance, opts, actctxt, msg, meta, reply) {
                          const private$ = act_instance.private$;
                          const actdef = meta.prior
                              ? private$.actdef[meta.prior]
                              : act_instance.find(msg);
                  Severity: Minor
                  Found in lib/act.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

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

                  function inward_act_cache(spec: any) {
                    const ctx = spec.ctx
                    const data = spec.data
                  
                    var so = ctx.options
                  Severity: Minor
                  Found in lib/inward.ts - 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

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

                  function outward_act_error(spec: any) {
                    const ctx = spec.ctx
                    const data = spec.data
                  
                    var delegate = ctx.seneca
                  Severity: Minor
                  Found in lib/outward.ts - 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

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

                  function inward_sub(spec) {
                      const ctx = spec.ctx;
                      const data = spec.data;
                      var meta = data.meta;
                      var private$ = ctx.seneca.private$;
                  Severity: Minor
                  Found in lib/inward.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

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

                  function internalize_reply(seneca: any, data: any) {
                    let meta: any = {}
                    let err = null
                    let out = null
                  
                  
                  Severity: Minor
                  Found in lib/transport.ts - 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