AlexeyGrishin/schemasaurus

View on GitHub

Showing 95 of 95 total issues

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

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

    function toFactory(Ctor) {
        if (Object.keys(Ctor.prototype).length !== 0) {
            return function () { return new Ctor(); };
        }
        return Ctor;
    Severity: Minor
    Found in src/compiler.js and 1 other location - About 55 mins to fix
    schemasaurus.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 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 2 locations. Consider refactoring.
    Open

    function toFactory(Ctor) {
        if (Object.keys(Ctor.prototype).length !== 0) {
            return function () { return new Ctor(); };
        }
        return Ctor;
    Severity: Minor
    Found in schemasaurus.js and 1 other location - About 55 mins to fix
    src/compiler.js on lines 12..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

    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 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 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 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 [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 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 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 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