simonmittag/p0d

View on GitHub
config.go

Summary

Maintainability
B
6 hrs
Test Coverage
C
73%

Method Config.validate has a Cognitive Complexity of 43 (exceeds 20 allowed). Consider refactoring.
Confirmed

func (cfg *Config) validate() *Config {
    //we always want this.
    cfg.Req.Method = strings.ToUpper(cfg.Req.Method)
    if cfg.Req.Method == "" {
        cfg.Req.Method = "GET"
Severity: Minor
Found in config.go - About 4 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

Method Config.validate has 78 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func (cfg *Config) validate() *Config {
    //we always want this.
    cfg.Req.Method = strings.ToUpper(cfg.Req.Method)
    if cfg.Req.Method == "" {
        cfg.Req.Method = "GET"
Severity: Major
Found in config.go - About 2 hrs to fix

    Method Config.validateReqBody has a Cognitive Complexity of 23 (exceeds 20 allowed). Consider refactoring.
    Open

    func (cfg *Config) validateReqBody() {
        if len(cfg.Req.Body) > 0 {
            if len(cfg.Req.FormData) > 0 {
                cfg.panic("when specifying request body, cannot have form data")
            }
    Severity: Minor
    Found in config.go - About 45 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

    There are no issues that match your filters.

    Category
    Status