solher/arangolite

View on GitHub

Showing 4 of 101 total issues

Method Database.Run has 6 return statements (exceeds 4 allowed).
Open

func (db *Database) Run(ctx context.Context, v interface{}, q Runnable) error {
    if q == nil {
        return nil
    }

Severity: Major
Found in database.go - About 40 mins to fix

    Method Database.Send has 6 return statements (exceeds 4 allowed).
    Open

    func (db *Database) Send(ctx context.Context, q Runnable) (Response, error) {
        if q == nil {
            return &response{}, nil
        }
    
    
    Severity: Major
    Found in database.go - About 40 mins to fix

      Method basicSender.Send has 5 return statements (exceeds 4 allowed).
      Open

      func (s *basicSender) Send(ctx context.Context, cli *http.Client, req *http.Request) (*response, error) {
          select {
          case <-ctx.Done():
              return nil, ctx.Err()
          default:
      Severity: Major
      Found in senders.go - About 35 mins to fix

        Method GetStatisticsResult.UnmarshalJSON has a Cognitive Complexity of 22 (exceeds 20 allowed). Consider refactoring.
        Open

        func (r *GetStatisticsResult) UnmarshalJSON(bytes []byte) (err error) {
            obj := make(map[string]interface{})
            err = json.Unmarshal(bytes, &obj)
            if err != nil {
                return err
        Severity: Minor
        Found in requests/statistics.go - About 35 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