senecajs/seneca

View on GitHub

Showing 177 of 189 total issues

Avoid too many return statements within this function.
Open

        return '{' + out.join(',') + '}';
Severity: Major
Found in lib/common.js - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

        return copy;
    Severity: Major
    Found in lib/legacy.js - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

          return valstr
      Severity: Major
      Found in lib/common.ts - About 30 mins to fix

        Function init has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        function init(seneca_options?: any, more_options?: any) {
          var initial_opts =
            'string' === typeof seneca_options
              ? deep({}, { from: seneca_options }, more_options)
              : deep({}, seneca_options, more_options)
        Severity: Minor
        Found in seneca.ts - About 25 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 close has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        intern.close = function (callpoint, done) {
            const seneca = this;
            const options = seneca.options();
            let done_called = false;
            const safe_done = function safe_done(err) {
        Severity: Minor
        Found in lib/api.js - About 25 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 place has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          place(this: any, timelimit: any) {
            let i = this._list.length
            let s = 0
            let e = i
        
        
        Severity: Minor
        Found in lib/common.ts - About 25 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 argprops has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        function argprops(defaults, args, fixed, omits) {
            omits = Array.isArray(omits)
                ? omits
                : omits && 'object' === typeof omits
                    ? Object.keys(omits)
        Severity: Minor
        Found in lib/legacy.js - About 25 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_msg_modify has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        function inward_msg_modify(spec: any) {
          const ctx = spec.ctx
          const data = spec.data
        
          var meta = data.meta
        Severity: Minor
        Found in lib/inward.ts - About 25 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 argprops has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        function argprops(defaults: any, args: any, fixed: any, omits: any) {
          omits = Array.isArray(omits)
            ? omits
            : omits && 'object' === typeof omits
              ? Object.keys(omits)
        Severity: Minor
        Found in lib/legacy.ts - About 25 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 close has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        intern.close = function(this: any, callpoint: any, done: any) {
          const seneca = this
          const options = seneca.options()
        
          let done_called = false
        Severity: Minor
        Found in lib/api.ts - About 25 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 process_outward has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            process_outward: function (actctxt, data) {
                const act_instance = actctxt.seneca;
                const outwardres = act_instance.order.outward.execSync(actctxt, data);
                if (outwardres.err) {
                    throw outwardres.err;
        Severity: Minor
        Found in lib/act.js - About 25 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 init has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        function init(seneca_options, more_options) {
            var initial_opts = 'string' === typeof seneca_options
                ? deep({}, { from: seneca_options }, more_options)
                : deep({}, seneca_options, more_options);
            // Legacy options, remove in 4.x
        Severity: Minor
        Found in seneca.js - About 25 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 parse_config has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        intern.parse_config = function (args) {
            let out = {};
            const config = args.filter((x) => null != x);
            const arglen = config.length;
            // TODO: use Gubu for better error msgs
        Severity: Minor
        Found in lib/api.js - About 25 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 place has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            place(timelimit) {
                let i = this._list.length;
                let s = 0;
                let e = i;
                if (0 === this._list.length) {
        Severity: Minor
        Found in lib/common.js - About 25 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_msg_modify has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        function inward_msg_modify(spec) {
            const ctx = spec.ctx;
            const data = spec.data;
            var meta = data.meta;
            if (ctx.actdef) {
        Severity: Minor
        Found in lib/inward.js - About 25 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 process_outward has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          process_outward: function(actctxt: any, data: any) {
            const act_instance = actctxt.seneca
            const outwardres = act_instance.order.outward.execSync(actctxt, data)
        
            if (outwardres.err) {
        Severity: Minor
        Found in lib/act.ts - About 25 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 parse_config has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        intern.parse_config = function(args: any) {
          let out: any = {}
        
          const config = args.filter((x: any) => null != x)
        
        
        Severity: Minor
        Found in lib/api.ts - About 25 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