Skip to content

v2019.05.01-alpha

Pre-release
Pre-release
Compare
Choose a tag to compare
@borkdude borkdude released this 01 May 19:16
  • Warn about missing test assertions in clojure.test/deftest (#9)

Screenshot 2019-05-01 21 09 25

These warnings will only appear when using clojure built-in predicates directly as an argument to deftest.

  • Limited support for in-ns (#49)

  • Support for multi-arity schema.core/defn forms (#117)

  • Config option to exclude linting arguments to certain functions or macros (#125):

cd /tmp
git clone https://github.com/riemann/riemann
cd riemann
git reset --hard 0.3.1
clj-kondo --lint . --config '{:linters {:invalid-arity {:skip-args [riemann.test/test-stream]}} :output {:exclude-files ["streams/pure\\.clj"]}}'

Also see: https://github.com/borkdude/clj-kondo/blob/master/doc/config.md#exclude-arity-linting-inside-a-specific-macro-call.

  • Make function name in output of private call linter fully qualified (#127)

  • Fixed issues: #108, #111