Jeroen de Jong
Jeroen de Jong
> My thought for resolving it would be to add an option :set-cookies? to the session middleware that defaults to true, but can be set to false in order to...
> Sure. PRs are welcome. Allright, I have a fix locally will create the PR when I have a test ready too! > My first thought is that it might...
Would `promise-of` block/defer the promise to check the result of the promise; or check whether the value is a `speced/promise` is passed and the spec matches. If the latter; how...
Interesting feature! > Fallback values should only be offered if the last member of the chain was missing, but not for intermediate values. I don't agree, it also deviates from...
> Now something fails, possibly in another ns, or even a different project. How do you debug it? Fail-fast behavior points right at the culprit instead of making you go...
I think a wrapper is the most viable option. Simply using lastModified as a cache key to prevent files from being linted, and merge previous/cached reports in the end result....
How would one determine the 'existence' of a keyword in a certain ns? Just as a spec (using `#'clojure.spec.alpha/get-spec` for example)?
played around with this a bit. The bit from file -> keywords. ```clj (->> (str "[" (slurp source) "]") (tools.reader/read-string {:read-cond :preserve :features #{:clj :cljs}}) (flatten) (filter #(and (keyword? %)...
> create a linter that fails whenever a file is a symlink This forbids the usage of any symlinks. That seems over opinionated imo. I'm working on a plugin system...
I gave this a bit more thought; the initial wording threw me off. The linter would simply report on symlinks. Users are still free to ignore the report. Keeping that...