oplik0/cherrydoor

View on GitHub

Showing 650 of 650 total issues

Function transformElement has 86 lines of code (exceeds 25 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: Major
Found in cherrydoor/static/js/vue-dev.js - About 3 hrs to fix

    Function setFullProps has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

    function setFullProps(instance, rawProps, props, attrs) {
        const [options, needCastKeys] = instance.propsOptions;
        let hasAttrsChanged = false;
        let rawCastValues;
        if (rawProps) {
    Severity: Minor
    Found in cherrydoor/static/js/vue-dev.js - About 3 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 transformOn has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

    const transformOn = (dir, node, context, augmentor) => {
        const { loc, modifiers, arg } = dir;
        if (!dir.exp && !modifiers.length) {
                context.onError(createCompilerError(34 /* X_V_ON_NO_EXPRESSION */, loc));
        }
    Severity: Minor
    Found in cherrydoor/static/js/vue-dev.js - About 3 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 resolveModifiers has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

    const resolveModifiers = (key, modifiers, context, loc) => {
        const keyModifiers = [];
        const nonKeyModifiers = [];
        const eventOptionModifiers = [];
        for (let i = 0; i < modifiers.length; i++) {
    Severity: Minor
    Found in cherrydoor/static/js/vue-dev.js - About 3 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 opts has 85 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        opts: function opts() {
          var options = Object.assign({}, DEFAULT_OPTIONS);
    
          if (this.format && this.format.length) {
            options.format = String(this.format);
    Severity: Major
    Found in cherrydoor/static/components/VueTimepicker.js - About 3 hrs to fix

      Function navigate has 84 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          function navigate(to, from) {
              let guards;
              const [leavingRecords, updatingRecords, enteringRecords] =
                  extractChangingRecords(to, from);
              // all components here have been resolved once because we are leaving
      Severity: Major
      Found in cherrydoor/static/js/vue-router.js - About 3 hrs to fix

        Function postTransformElement has 84 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            return function postTransformElement() {
                    node = context.currentNode;
                    if (!(node.type === 1 /* ELEMENT */ &&
                            (node.tagType === 0 /* ELEMENT */ ||
                                    node.tagType === 1 /* COMPONENT */))) {
        Severity: Major
        Found in cherrydoor/static/js/vue-dev.js - About 3 hrs to fix

          Function update has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
          Open

          def update(args, config={}):
              if config == {}:
                  config = load_config(args)[0]
              previous_version = parse_version(
                  import_module("cherrydoor.__version__").__version__
          Severity: Minor
          Found in cherrydoor/cli/update.py - About 3 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 _createVNode has 81 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function _createVNode(type, props = null, children = null, patchFlag = 0, dynamicProps = null, isBlockNode = false) {
              if (!type || type === NULL_DYNAMIC_COMPONENT) {
                      if (!type) {
                              warn(`Invalid vnode type when creating vnode: ${type}.`);
                      }
          Severity: Major
          Found in cherrydoor/static/js/vue-dev.js - About 3 hrs to fix

            Function readStringValues has 81 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                readStringValues: function readStringValues(stringValue) {
                  var _this7 = this;
            
                  // Failsafe for empty `v-model` string
                  if (!stringValue || !stringValue.length) {
            Severity: Major
            Found in cherrydoor/static/components/VueTimepicker.js - About 3 hrs to fix

              Function parseAttribute has 79 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function parseAttribute(context, nameSet) {
                  // Name.
                  const start = getCursor(context);
                  const match = /^[^\t\r\n\f />][^\t\r\n\f />=]*/.exec(context.source);
                  const name = match[0];
              Severity: Major
              Found in cherrydoor/static/js/vue-dev.js - About 3 hrs to fix

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

                    for (let key of b.keys) {
                        if (!key.optional && !a.keys.find(isSameParam.bind(null, key)))
                            return warn(
                                `Alias "${b.record.path}" and the original record: "${a.record.path}" should have the exact same param named "${key.name}"`
                            );
                Severity: Major
                Found in cherrydoor/static/js/vue-router.js and 1 other location - About 3 hrs to fix
                cherrydoor/static/js/vue-router.js on lines 1623..1628

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

                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

                    for (let key of a.keys) {
                        if (!key.optional && !b.keys.find(isSameParam.bind(null, key)))
                            return warn(
                                `Alias "${b.record.path}" and the original record: "${a.record.path}" should have the exact same param named "${key.name}"`
                            );
                Severity: Major
                Found in cherrydoor/static/js/vue-router.js and 1 other location - About 3 hrs to fix
                cherrydoor/static/js/vue-router.js on lines 1629..1634

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

                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 resolveTransitionProps has 78 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                function resolveTransitionProps(rawProps) {
                    const baseProps = {};
                    for (const key in rawProps) {
                            if (!(key in DOMTransitionPropsValidators)) {
                                    baseProps[key] = rawProps[key];
                Severity: Major
                Found in cherrydoor/static/js/vue-dev.js - About 3 hrs to fix

                  Function patchDOMProp has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function patchDOMProp(el, key, value, 
                  // the following args are passed only due to potential innerHTML/textContent
                  // overriding existing VNodes, in which case the old tree must be properly
                  // unmounted.
                  prevChildren, parentComponent, parentSuspense, unmountChildren) {
                  Severity: Minor
                  Found in cherrydoor/static/js/vue-dev.js - About 3 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 getNamespace has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
                  Open

                      getNamespace(tag, parent) {
                              let ns = parent ? parent.ns : 0 /* HTML */;
                              if (parent && ns === 2 /* MATH_ML */) {
                                      if (parent.tag === 'annotation-xml') {
                                              if (tag === 'svg') {
                  Severity: Minor
                  Found in cherrydoor/static/js/vue-dev.js - About 3 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 mergeProps has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function mergeProps(...args) {
                      const ret = extend({}, args[0]);
                      for (let i = 1; i < args.length; i++) {
                              const toMerge = args[i];
                              for (const key in toMerge) {
                  Severity: Minor
                  Found in cherrydoor/static/js/vue-dev.js - About 3 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 getSequence has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function getSequence(arr) {
                      const p = arr.slice();
                      const result = [0];
                      let i, j, u, v, c;
                      const len = arr.length;
                  Severity: Minor
                  Found in cherrydoor/static/js/vue-dev.js - About 3 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 fillValues has 76 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      fillValues: function fillValues(forceEmit) {
                        var _this9 = this;
                  
                        var fullValues = {};
                        var baseHour = this.hour;
                  Severity: Major
                  Found in cherrydoor/static/components/VueTimepicker.js - About 3 hrs to fix

                    Function extractComponentsGuards has 74 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    function extractComponentsGuards(matched, guardType, to, from) {
                        const guards = [];
                        for (const record of matched) {
                            for (const name in record.components) {
                                let rawComponent = record.components[name];
                    Severity: Major
                    Found in cherrydoor/static/js/vue-router.js - About 2 hrs to fix
                      Severity
                      Category
                      Status
                      Source
                      Language