delonnewman/dragnet

View on GitHub
app/frontends/src/main/dragnet/editor/core.cljs

Summary

Maintainability
Test Coverage

Non-idiomatic code found in (-> state :question-types)
Open

  (-> state :question-types))

Consider using:

(:question-types state)

instead of:

(-> state :question-types)

Non-idiomatic code found in (-> (state :edits) seq)
Open

  (-> (state :edits) seq))

Consider using:

(seq (state :edits))

instead of:

(-> (state :edits) seq)

Non-idiomatic code found in (-> (clojure.core/deref ref) :survey)
Open

      (println "state" (-> @ref :survey))

Consider using:

(:survey @ref)

instead of:

(-> @ref :survey)

There are no issues that match your filters.

Category
Status