oplik0/cherrydoor

View on GitHub

Showing 650 of 650 total issues

Function parseChildren has a Cognitive Complexity of 76 (exceeds 5 allowed). Consider refactoring.
Open

function parseChildren(context, mode, ancestors) {
    const parent = last(ancestors);
    const ns = parent ? parent.ns : 0 /* HTML */;
    const nodes = [];
    while (!isEnd(context, mode, ancestors)) {
Severity: Minor
Found in cherrydoor/static/js/vue-dev.js - About 1 day 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 buildSlots has a Cognitive Complexity of 71 (exceeds 5 allowed). Consider refactoring.
Open

function buildSlots(node, context, buildSlotFn = buildClientSlotFn) {
    context.helper(WITH_CTX);
    const { children, loc } = node;
    const slotsProperties = [];
    const dynamicSlots = [];
Severity: Minor
Found in cherrydoor/static/js/vue-dev.js - About 1 day 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 getConstantType has a Cognitive Complexity of 68 (exceeds 5 allowed). Consider refactoring.
Open

function getConstantType(node, context) {
    const { constantCache } = context;
    switch (node.type) {
            case 1 /* ELEMENT */:
                    if (node.tagType !== 0 /* ELEMENT */) {
Severity: Minor
Found in cherrydoor/static/js/vue-dev.js - About 1 day 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 createHydrationFunctions has 264 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function createHydrationFunctions(rendererInternals) {
    const { mt: mountComponent, p: patch, o: { patchProp, nextSibling, parentNode, remove, insert, createComment } } = rendererInternals;
    const hydrate = (vnode, container) => {
            if (!container.hasChildNodes()) {
                    warn(`Attempting to hydrate existing markup but container is empty. ` +
Severity: Major
Found in cherrydoor/static/js/vue-dev.js - About 1 day to fix

    Function renderComponentRoot has a Cognitive Complexity of 66 (exceeds 5 allowed). Consider refactoring.
    Open

    function renderComponentRoot(instance) {
        const { type: Component, vnode, proxy, withProxy, props, propsOptions: [propsOptions], slots, attrs, emit, render, renderCache, data, setupState, ctx, inheritAttrs } = instance;
        let result;
        const prev = setCurrentRenderingInstance(instance);
        {
    Severity: Minor
    Found in cherrydoor/static/js/vue-dev.js - About 1 day 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 updateProps has a Cognitive Complexity of 64 (exceeds 5 allowed). Consider refactoring.
    Open

    function updateProps(instance, rawProps, rawPrevProps, optimized) {
        const { props, attrs, vnode: { patchFlag } } = instance;
        const rawCurrentProps = toRaw(props);
        const [options] = instance.propsOptions;
        let hasAttrsChanged = false;
    Severity: Minor
    Found in cherrydoor/static/js/vue-dev.js - About 1 day 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 walk has a Cognitive Complexity of 64 (exceeds 5 allowed). Consider refactoring.
    Open

    function walk(node, context, doNotHoistNode = false) {
        let hasHoistedNode = false;
        // Some transforms, e.g. transformAssetUrls from @vue/compiler-sfc, replaces
        // static bindings with expressions. These expressions are guaranteed to be
        // constant so they are still eligible for hoisting, but they are only
    Severity: Minor
    Found in cherrydoor/static/js/vue-dev.js - About 1 day 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 a4d3 has 250 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    /***/ (function(module, exports, __webpack_require__) {
    
    "use strict";
    
    var $ = __webpack_require__("23e7");
    Severity: Major
    Found in cherrydoor/static/components/VueTimepicker.js - About 1 day to fix

      Function applyOptions has a Cognitive Complexity of 63 (exceeds 5 allowed). Consider refactoring.
      Open

      function applyOptions(instance) {
          const options = resolveMergedOptions(instance);
          const publicThis = instance.proxy;
          const ctx = instance.ctx;
          // do not cache property access on public proxy during state initialization
      Severity: Minor
      Found in cherrydoor/static/js/vue-dev.js - About 1 day 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

      File mongo.py has 558 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      """Functions to simplify interacting with database."""
      import datetime as dt
      from math import ceil
      
      from bson.objectid import ObjectId
      Severity: Major
      Found in cherrydoor/database/mongo.py - About 1 day to fix

        Function install has a Cognitive Complexity of 58 (exceeds 5 allowed). Consider refactoring.
        Open

        def install(args):
            if sys.platform == "linux" or 1 == 1:
        
                if step_enabled("dependencies", args):
                    # install MongoDB and some other things if they're not installed
        Severity: Minor
        Found in cherrydoor/cli/install.py - About 1 day 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 resolveTransitionHooks has a Cognitive Complexity of 57 (exceeds 5 allowed). Consider refactoring.
        Open

        function resolveTransitionHooks(vnode, props, state, instance) {
            const { appear, mode, persisted = false, onBeforeEnter, onEnter, onAfterEnter, onEnterCancelled, onBeforeLeave, onLeave, onAfterLeave, onLeaveCancelled, onBeforeAppear, onAppear, onAfterAppear, onAppearCancelled } = props;
            const key = String(vnode.key);
            const leavingVNodesCache = getLeavingNodesForType(state, vnode);
            const callHook = (hook, args) => {
        Severity: Minor
        Found in cherrydoor/static/js/vue-dev.js - About 1 day 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 transformElement has a Cognitive Complexity of 55 (exceeds 5 allowed). Consider refactoring.
        Open

        const transformElement = (node, context) => {
            // perform the work on exit, after all child expressions have been
            // processed and merged.
            return function postTransformElement() {
                    node = context.currentNode;
        Severity: Minor
        Found in cherrydoor/static/js/vue-dev.js - About 1 day 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 initCustomFormatter has a Cognitive Complexity of 55 (exceeds 5 allowed). Consider refactoring.
        Open

        function initCustomFormatter() {
            /* eslint-disable no-restricted-globals */
            if (typeof window === 'undefined') {
                    return;
            }
        Severity: Minor
        Found in cherrydoor/static/js/vue-dev.js - About 1 day 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 transformText has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
        Open

        const transformText = (node, context) => {
            if (node.type === 0 /* ROOT */ ||
                    node.type === 1 /* ELEMENT */ ||
                    node.type === 11 /* FOR */ ||
                    node.type === 10 /* IF_BRANCH */) {
        Severity: Minor
        Found in cherrydoor/static/js/vue-dev.js - About 1 day 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 tokenizePath has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
        Open

        function tokenizePath(path) {
            if (!path) return [[]];
            if (path === "/") return [[ROOT_TOKEN]];
            if (!path.startsWith("/")) {
                throw new Error(
        Severity: Minor
        Found in cherrydoor/static/js/vue-router.js - About 1 day 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 createSuspenseBoundary has a Cognitive Complexity of 51 (exceeds 5 allowed). Consider refactoring.
        Open

        function createSuspenseBoundary(vnode, parent, parentComponent, container, hiddenContainer, anchor, isSVG, slotScopeIds, optimized, rendererInternals, isHydrating = false) {
            /* istanbul ignore if */
            if (!hasWarned) {
                    hasWarned = true;
                    // @ts-ignore `console.info` cannot be null error
        Severity: Minor
        Found in cherrydoor/static/js/vue-dev.js - About 7 hrs 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 initCustomFormatter has 182 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function initCustomFormatter() {
            /* eslint-disable no-restricted-globals */
            if (typeof window === 'undefined') {
                    return;
            }
        Severity: Major
        Found in cherrydoor/static/js/vue-dev.js - About 7 hrs to fix

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

                if (!options.minuteInterval || options.minuteInterval < 1 || options.minuteInterval > 60) {
                  if (this.debugMode) {
                    if (options.minuteInterval > 60) {
                      this.debugLog("\"minute-interval\" should be less than 60. Current value is ".concat(this.minuteInterval));
                    } else if (options.minuteInterval === 0 || options.minuteInterval < 1) {
          Severity: Major
          Found in cherrydoor/static/components/VueTimepicker.js and 1 other location - About 7 hrs to fix
          cherrydoor/static/components/VueTimepicker.js on lines 5408..5422

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

          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

                if (!options.secondInterval || options.secondInterval < 1 || options.secondInterval > 60) {
                  if (this.debugMode) {
                    if (options.secondInterval > 60) {
                      this.debugLog("\"second-interval\" should be less than 60. Current value is ".concat(this.secondInterval));
                    } else if (options.secondInterval === 0 || options.secondInterval < 1) {
          Severity: Major
          Found in cherrydoor/static/components/VueTimepicker.js and 1 other location - About 7 hrs to fix
          cherrydoor/static/components/VueTimepicker.js on lines 5387..5401

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

          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

          Severity
          Category
          Status
          Source
          Language