cibernox/ember-power-select

View on GitHub

Showing 86 of 86 total issues

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

  options: any,
  text: string,
  matcher: MatcherFn,
  offset: number,
  skipDisabled = false,
Severity: Minor
Found in ember-power-select/src/utils/group-utils.ts - About 35 mins to fix

    Avoid too many return statements within this function.
    Open

            if (optionIndex === null) return;
    Severity: Major
    Found in ember-power-select/src/components/power-select/options.ts - About 30 mins to fix

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

        get currentSection() {
          let currentRouteName = this.router.currentRouteName;
          for (let i = 0; i < groupedSections.length; i++) {
            let group = groupedSections[i];
            for (let j = 0; j < group.options.length; j++) {
      Severity: Minor
      Found in docs/app/controllers/public-pages/docs.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

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

        _hasMoved(endEvent: TouchEvent): boolean {
          const moveEvent = this.touchMoveEvent;
          if (!moveEvent) {
            return false;
          }
      Severity: Minor
      Found in ember-power-select/src/components/power-select/options.ts - 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

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

        get currentSection() {
          let currentRouteName = this.router.currentRouteName;
          for (let i = 0; i < groupedSections.length; i++) {
            let group = groupedSections[i];
            for (let j = 0; j < group.options.length; j++) {
      Severity: Minor
      Found in docs/app/controllers/public-pages/cookbook.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

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

        defaultBuildSelection(option: any, select: Select) {
          const newSelection = Array.isArray(select.selected)
            ? select.selected.slice(0)
            : [];
          let idx = -1;
      Severity: Minor
      Found in ember-power-select/src/components/power-select-multiple.ts - 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