-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cljstyle
20 lines (20 loc) · 876 Bytes
/
.cljstyle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{:files {:extensions #{"cljc" "cljs" "clj" "cljx" "edn" "cljstyle"}
:ignore #{".hg" ".git" #".clj-kondo/.*?/"}}
:rules {:indentation {:indents ^:replace {#"[^\(\[\{].*" [[:inner 0]]}
:list-indent 2}
:whitespace {:remove-trailing? true
:remove-surrounding? true
:insert-missing? true}
:blank-lines {:max-consecutive 1
:padding-lines 1
:insert-padding? true
:trim-consecutive? true}
:eof-newline {:enabled? true}
:functions {:enabled? false}
:vars {:enabled? false}
:types {:types? false
:protocols? false
:reifies? false
:proxies? false}
:namespaces {:import-break-width 80
:break-libs? true}}}