vemv

Results 256 issues of vemv

Hi again, I liked this feature: ``` Available diffs: - https://github.com/clojure/clojure/compare/clojure-1.10.1...1.10.3 ``` Additionally, one could try printing https://github.com/clojure/clojure/blob/clojure-1.10.3/changes.md if that file exists (as of that tag). A few filenames could...

## Context It is a common desire/need to avoid inflicting breakage to one's downstream consumers. It can be hard to consistently avoid this in authoring / code review phases. ##...

The Sass compiler supports "inner media queries" (for lack of a better name, that I know of): ![image](https://user-images.githubusercontent.com/1162994/52240393-fe85c900-28d0-11e9-9352-23e8f8066537.png) I'm failing to replicate that feature with Garden. This is my attempt:...

enhancement

Hi! It'd be interesting to prove that serialization/deserialization is analog to that of clojure.data.json, so that existing applications can switch implementations without fearing that values will suddenly have a slightly...

https://github.com/fhd/clostache/blob/f6ad1f40b5b8b30a7a00b3ff4a685fecded3f303/src/clostache/parser.clj#L10 places the type hint on the symbol, while for a number the years the recommended way is to place it on the argv. https://clojure.org/reference/java_interop#typehints (last paragraph) https://gist.github.com/pjstadig/6fa4ebf465f6d438b4dcc2a5bfbb3db6

Hi, having Clostache in the dependecy chain causes the following warning to be printed: ``` WARNING: seqable? already refers to: #'clojure.core/seqable? in namespace: clostache.parser, being replaced by: #'clojure.core.incubator/seqable? ``` It...

## Brief `defn-spec` could be a superset of `defn`, but it isn't, and also not in a very informative manner: ``` orchestra.expound-test=> (defn-spec foo []) IllegalArgumentException find not supported on...

Similar to https://github.com/jonase/eastwood/issues/402

One might want to use https://github.com/jonase/eastwood/tree/01fb0b43b0bc10d578af667c5ee9708cbf6a97bc#ignored-faults in conjunction with https://github.com/jonase/eastwood/tree/01fb0b43b0bc10d578af667c5ee9708cbf6a97bc#ignoring-linter-sub-kinds e.g. I may want to mute only a sub :kind for a specific file

:arglists can use a regex notation:, `?, *, +` e.g. https://github.com/clojure/clojure/blob/b1b88dd25373a86e41310a525a21b497799dbbf2/src/clj/clojure/core.clj#L7724-L7726 Eastwood could make a best-effort at expanding these to `&` syntax (internally, non-mutatively) so that defns using such notation...