Peter Monks

Results 68 issues of Peter Monks

### Steps to Reproduce: 1. Install OpenJDK 1.8 2. Run the tests (`lein do version, test`) ### Expected Result: Tests run, and pass (taking note of issue #45). ### Actual...

bug
blocked

It would be great if the project included a `deps.edn` file, so that users of the [Clojure command line tools](https://clojure.org/guides/deps_and_cli) can evaluate the library.

enhancement
help wanted
good first issue

As a prelude to addressing issues #21, #26, #27, and #28, it would be great to autogenerate API docs from the master branch, and publish them on GitHub pages. Even...

help wanted
task

Although it's [possible to load FXML files into an `fn-fx` app](https://github.com/fn-fx/fn-fx/issues/9#issuecomment-362446646), doing so requires Java interop. It would be nicer if this were supported directly and idiomatically by `fn-fx`.

enhancement
help wanted
good first issue

When running the tests locally on JDK 8 (i.e. with bundled JavaFX), I periodically see the following error, and [a similar error has shown up on TravisCI too](https://travis-ci.com/fn-fx/fn-fx/jobs/154518095). I don't...

bug
help wanted

The Eclipse Foundation now recommends all users of the Eclipse Public License v1.0 upgrade to Eclipse Public License v2.0 (see [this FAQ item](https://www.eclipse.org/legal/epl-2.0/faq.php#h.60mjudroo8e5)). Any thoughts / comments, @halgari, @zcaudate?

task

To upvote this issue, give it a thumbs up. See [this list](https://github.com/clj-kondo/clj-kondo/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc) for the most upvoted issues. **Is your feature request related to a problem? Please describe.** I've been informed...

I have a bad habit of using idioms such as `(filter identity (map ...` when this is equivalent to `(keep ...`. It would be great if kondo detected this former...

I have a need to split (as per `clojure.string/split`) a single value (coming from `#env`) into a sequence, and implemented the following reader literal in my own code: ```clojure (defmethod...

In a couple of places cprop uses `(println)` for status logging, but it would be better if it used a logging framework (e.g. [tools.logging](https://github.com/clojure/tools.logging)). Amongst other concerns of unconfigurable output...