devth/yetibot

View on GitHub
src/yetibot/models/postal_code.clj

Summary

Maintainability
Test Coverage

Non-idiomatic code found in (filter (fn* [p1__4230875#] (not (nil? p1__4230875#))) [a b c d])
Open

  (->> (filter #(not (nil? %)) [a b c d])
Severity: Minor
Found in src/yetibot/models/postal_code.clj by kibit

Consider using:

(remove nil? [a b c d])

instead of:

(filter #(not (nil? %)) [a b c d])

There are no issues that match your filters.

Category
Status