cljstyle
cljstyle copied to clipboard
Namespace indent-size overrides
Using this as a reference the indentation for forms within ns
are not customizable.
With this configuration:
{:rules
{:namespaces
{:indent-size 1}}}
it consistently formats to this style with 2 spaces instead of 1:
(ns format-test
(:require
[clojure.set :as set]
[clojure.string :as str]))