Showing 3 of 3 total issues

Non-idiomatic code found in (->> (loop [x (/ size 2) res [(r/digit 9)]] (if (> x 1) (recur (dec x) (conj res (r/digit 9))) res)) (h/encode conf))
Open

   (->> (loop [x (/ size 2)
Severity: Minor
Found in src/fxc/core.clj by kibit

Consider using:

(h/encode
  conf
  (loop [x (/ size 2) res [(r/digit 9)]]
    (if (> x 1) (recur (dec x) (conj res (r/digit 9))) res)))

instead of:

(->>
  (loop [x (/ size 2) res [(r/digit 9)]]
    (if (> x 1) (recur (dec x) (conj res (r/digit 9))) res))
  (h/encode conf))

TODO found
Open

;; TODO: verify this under fuzzying
Severity: Minor
Found in src/fxc/marshalling.clj by fixme

TODO found
Open

;; TODO: why?
Severity: Minor
Found in src/fxc/utils.clj by fixme
Severity
Category
Status
Source
Language