devth/yetibot

View on GitHub
src/yetibot/api/google/gcs.clj

Summary

Maintainability
Test Coverage

Non-idiomatic code found in (->> (.list (clojure.core/deref storage-client) (into-array [(Storage$BucketListOption/pageSize 100)])) .iterateAll)
Open

    (for [b (->> (.list @storage-client
Severity: Minor
Found in src/yetibot/api/google/gcs.clj by kibit

Consider using:

(.iterateAll
  (.list
    @storage-client
    (into-array [(Storage$BucketListOption/pageSize 100)])))

instead of:

(->>
  (.list
    @storage-client
    (into-array [(Storage$BucketListOption/pageSize 100)]))
  .iterateAll)

There are no issues that match your filters.

Category
Status