Fork me on GitHub
#clj-kondo
<
2023-01-19
>
Hukka07:01:11

Looking at the list of linters, I didn't see anything that would warn about missing whitespace in code like (:foo{:foo :bar}). Am I missing something, and would it make sense to have a linter for missing whitespace before all kinds of brackets?

dharrigan07:01:57

There are valid reasons for some code not having a whitespace, i.e., #:foo{:bar :baz}

dharrigan07:01:35

I think that whitespace is more a concern of a formatter,, like cljfmt which can insert missing whitespace. Yet, it may be something a linter may consider.

👍 4