Dominic Monroe

Results 195 issues of Dominic Monroe

It appears it needs to use `compile-filter-body`

enhancement
help wanted

Attempting to reproduce https://codepen.io/SevereOverfl0w/pen/oOEvpY like-for-like does not currently work when doing: ``` (defn my-component [] (let [this (r/current-component)] (into [:div {:style {"backgroundColor" "red"}}] (map-indexed (fn [i child] (when (> i...

**Is your feature request related to a problem? Please describe.** It's quite common when working with react to use hooks. One hook is called "use-effect" and it's for creating side...

enhancement
pinned

e.g. ``` (ns foo (:import [manifold.stream.core IEventSource])) ``` should result in an a lint failure telling me to require `manifold.stream.core` first. Related to #515

enhancement

**Is your feature request related to a problem? Please describe.** If I require a namespace that's marked deprecated (e.g. clojure.parallel would be after CLJ-706) then it would be nice to...

This breaks custom matchers, as mentioned in #187. #187 is not fixed by this because RoutePair generally needs fixing, but this makes it sufficiently optional for users.

e.g. :route-params is not mentioned in the README.

``` (defrecord A []) ((schema.coerce/coercer bidi.schema/RoutePair {}) [(->A) :match]) ``` Should result in an unchanged result, but actually results in `[{} :match]`, which _silently_ breaks the route structure. This seems...

A bit of batting practice

`=` with one argument makes no sense, I'm guessing there's a missing comparison here. https://github.com/juxt/bidi/blob/d1bfcc9c4fe247b8ada19cd7ee25acd81dd93f26/test/bidi/bidi_test.cljc#L297 https://github.com/juxt/bidi/blob/d1bfcc9c4fe247b8ada19cd7ee25acd81dd93f26/test/bidi/bidi_test.cljc#L303