akito0107/favalid

View on GitHub

Showing 3 of 40 total issues

File schema.test.ts has 276 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import * as assert from "power-assert";
import { combine, tester } from "../core";
import { emailValidator } from "../examples/email";
import {
  conditional,
Severity: Minor
Found in src/__tests__/schema.test.ts - About 2 hrs to fix

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

    export const emailValidatorWithReducer = (email: string) => {
      const reducer = (prevError, currentError) => {
        const error = prevError.error || currentError.error;
        let message = prevError.message;
        if (currentError.error) {
    Severity: Minor
    Found in src/examples/email.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 isEmpty has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

    const isEmpty = (arg: any): boolean => {
      switch (typeof arg) {
        case "string":
          return arg === "";
        case "object":
    Severity: Minor
    Found in src/util.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