AlexeyGrishin/schemasaurus

View on GitHub

Showing 36 of 95 total issues

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

SchemaPartProcessor.prototype.processItems = function (step) {
    if (!step.schema.items && !step.schema.additionalItems) {
        return;
    }
    var idxvar, newvar, k;
Severity: Minor
Found in src/int/processor.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 processProperties has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

SchemaPartProcessor.prototype.processProperties = function (step) {
    if (!step.schema.properties && !step.schema.additionalProperties && !step.schema.patternProperties) {
        return;
    }
    var propsVar, newvar, k;
Severity: Minor
Found in src/int/processor.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 [type] has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    "[type]": function (schema, object, ctx) {
        var isTrue, isFalse;
        if (notDefined(object)) {
            return;
        }
Severity: Minor
Found in src/normalizer.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 4 has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

},{}],4:[function(require,module,exports){
"use strict";
module.exports = function fillDefaultFormats(formats) {
    formats.email = formats.email || {
        regexp: /^[^@]+@[^@]+$/,
Severity: Minor
Found in schemasaurus.js - About 1 hr to fix

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

        addEnd: function () {
            var end = this.selector.end;
            if (end) {
                if (end.inline && (typeof end.inline === 'string' || !this.options.noinline)) {
                    this.codeComposer.inline(end.inline, "val", null, true);
    Severity: Minor
    Found in src/compiler.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 createMatcher has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    function createMatcher(expr) {
        var ma = modRe.exec(expr), props = [], attr, not, i;
        if (ma) {
            attr = ma[1];
        }
    Severity: Minor
    Found in src/int/matchers.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 addExtender has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    module.exports = function addExtender(ValidatorClass) {
    
        ValidatorClass.extend = function (override, ctor) {
            function NewValidator(options) {
                ValidatorClass.call(this, options);
    Severity: Minor
    Found in src/validator_extend.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 processAdditional has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    SchemaPartProcessor.prototype.processAdditional = function (step, schemaProp, cbProp, idxvar, newvar) {
    Severity: Minor
    Found in src/int/processor.js - About 35 mins to fix

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

      SchemaPartProcessor.prototype.processAdditional = function (step, schemaProp, cbProp, idxvar, newvar) {
      Severity: Minor
      Found in schemasaurus.js - About 35 mins to fix

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

        function resolveRef(loader, schemaNode, ref) {
            var remLoc = decodeURI(ref).split("#"), rem = remLoc[0], loc = remLoc[1].split("/").map(detilde), st = schemaNode, i;
            if (rem !== '') {
                st = (loader || defaultLoader)(rem);
            }
        Severity: Minor
        Found in src/int/references.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 addFn2 has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            addFn2: function (fn, schemaPart, directCallName, stopLabel) {
                if (fn === undefined || fn === null) {
                    return;
                }
                if (typeof fn.inline === 'function' && this.options.noinline) {
        Severity: Minor
        Found in src/compiler.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 [conform] has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            "[conform]": function (schema) {
                this.$custom = this.$custom || [];
                if (typeof schema.conform === 'function') {
                    this.$custom.push(schema.conform);
                    return {inline: "if (!this.$custom[" + (this.$custom.length - 1) + "](_, ctx)) this.error('custom', ctx)"};
        Severity: Minor
        Found in src/v4validator.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 prettifyCode has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        function prettifyCode(codeLines) {
            var offset = "", step = "  ", line, idx, openBrace, closeBrace;
            for (idx = 0; idx < codeLines.length; idx = idx + 1) {
                line = codeLines[idx].trim();
                openBrace = line.indexOf("{") !== -1;
        Severity: Minor
        Found in src/int/code.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

        Avoid too many return statements within this function.
        Open

            return valAsStr;
        Severity: Major
        Found in src/int/matchers.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

              return valAsStr;
          Severity: Major
          Found in schemasaurus.js - About 30 mins to fix

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

                "[dependencies]": function (schema, ctx) {
                    var prop, icode = [], dep, fnName;
            
                    for (prop in schema.dependencies) {
                        if (schema.dependencies.hasOwnProperty(prop)) {
            Severity: Minor
            Found in src/v4validator.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

            Severity
            Category
            Status
            Source
            Language