taburetkin/marionette.yat

View on GitHub
coms/controls/control.js

Summary

Maintainability
A
3 hrs
Test Coverage

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

    async validateAsync(value, options = {}) {
        if (!arguments.length) {
            value = this.getValue();
        }
        let children = this.hasChildren();
Severity: Minor
Found in coms/controls/control.js - About 1 hr to fix

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

        async validateAsync(value, options = {}) {
            if (!arguments.length) {
                value = this.getValue();
            }
            let children = this.hasChildren();
    Severity: Minor
    Found in coms/controls/control.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 validateChildrenAsync has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        async validateChildrenAsync(parentValue, options = {}) {
            let changer = options.changer;
            let childrenErrors = {};
            for (let x = 0; x < this._children.length; x++) {
                let context = this._children[x];
    Severity: Minor
    Found in coms/controls/control.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

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

        async setValue(value, options = {}) {
            this.validated = false;
            let nextValue;
            if (options.merge) {
                let curValue = _.isObject(this.value) ? this.value : {};
    Severity: Minor
    Found in coms/controls/control.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

    There are no issues that match your filters.

    Category
    Status