SolalDR/data-gui

View on GitHub

Showing 4 of 10 total issues

Function render has 58 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  render() {
    const alpha = this.color.alphaEnabled
      ? html`
          <gui-input
            step="0.01"
Severity: Major
Found in src/extras/color-controller.ts - About 2 hrs to fix

    Function render has 35 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      render() {
        const inputNumber = html`
          <gui-input
            class="input-channel"
            type="number"
    Severity: Minor
    Found in src/controllers/number-controller.ts - About 1 hr to fix

      Function render has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        render() {
          return html`
            <div>
              <label>${this.name}</label>
              <div class="right">
      Severity: Minor
      Found in src/controllers/select-controller.ts - About 1 hr to fix

        Function constructor has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

          constructor(parameters: NumberControllerConstructor) {
            super(parameters)
            const { min, max, range, step } = parameters
            this.range = typeof range === 'boolean' ? range : !!(!isNaN(min) && !isNaN(max))
            this.min = !isNaN(min)
        Severity: Minor
        Found in src/controllers/number-controller.ts - About 55 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