valor-software/angular2-bootstrap

View on GitHub
src/chronos/create/from-anything.ts

Summary

Maintainability
A
2 hrs
Test Coverage

Function prepareConfig has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

export function prepareConfig(config: DateParsingConfig): DateParsingConfig {
  let input = config._i;
  const format = config._f;

  config._locale = config._locale || getLocale(config._l);
Severity: Minor
Found in src/chronos/create/from-anything.ts - About 1 hr 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 configFromInput has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

function configFromInput(config: DateParsingConfig): DateParsingConfig {
  const input = config._i;
  if (isUndefined(input)) {
    config._d = new Date();
  } else if (isDate(input)) {
Severity: Minor
Found in src/chronos/create/from-anything.ts - About 1 hr 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 createLocalOrUTC has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

export function createLocalOrUTC(input: DateInput, format?: string | string[], localeKey?: string, strict?: boolean, isUTC?: boolean): DateParsingConfig {
Severity: Minor
Found in src/chronos/create/from-anything.ts - About 35 mins to fix

    There are no issues that match your filters.

    Category
    Status