@@ -18,6 +18,15 @@ project may be more suitable.
18
18
[ clojure style guide ] : https://github.com/bbatsov/clojure-style-guide
19
19
[ zprint ] : https://github.com/kkinnear/zprint
20
20
21
+ ## Breaking Changes in 0.11.0
22
+
23
+ The ` :indents ` key has been split into ` :indents ` and ` :extra-indents ` .
24
+ The ` :indents ` key ** replaces** all default indents, while the
25
+ ` :extra-indents ` key will ** append** to the default indents.
26
+
27
+ The ` --indents ` and ` --alias-map ` keys have been removed from the CLI,
28
+ in favor of using a configuration file instead.
29
+
21
30
## Usage
22
31
23
32
cljfmt integrates with many existing build tools, or can be used as a
@@ -54,7 +63,7 @@ Use `--help` for a list of all the command-line options.
54
63
55
64
For persistent configuration, you can use a [ configuration file] [ ] .
56
65
57
- [ zipped up binary ] : https://github.com/weavejester/cljfmt/releases/download/0.10.6 /cljfmt-0.10.6 -win-amd64.zip
66
+ [ zipped up binary ] : https://github.com/weavejester/cljfmt/releases/download/0.11.0 /cljfmt-0.11.0 -win-amd64.zip
58
67
[ configuration file ] : #configuration
59
68
60
69
### Clojure Tools
@@ -63,7 +72,7 @@ The official Clojure CLI supports installation of thirdparty [tools][].
63
72
To install cljfmt as a tool, run:
64
73
65
74
``` bash
66
- clj -Ttools install io.github.weavejester/cljfmt ' {:git/tag "0.10.6 "}' :as cljfmt
75
+ clj -Ttools install io.github.weavejester/cljfmt ' {:git/tag "0.11.0 "}' :as cljfmt
67
76
```
68
77
69
78
To use the tool to check for formatting errors in your project, run:
@@ -86,7 +95,7 @@ clj -Tcljfmt fix
86
95
Leiningen, add the following plugin to your ` project.clj ` file:
87
96
88
97
``` clojure
89
- :plugins [[dev.weavejester/lein-cljfmt " 0.10.6 " ]]
98
+ :plugins [[dev.weavejester/lein-cljfmt " 0.11.0 " ]]
90
99
```
91
100
92
101
To use the plugin to check code for formatting errors, run:
@@ -113,7 +122,7 @@ cljfmt can be run as a library that formats a string of Clojure code.
113
122
First, add the dependency:
114
123
115
124
``` edn
116
- {:deps {dev.weavejester/cljfmt {:mvn/version " 0.10.6 " }}}
125
+ {:deps {dev.weavejester/cljfmt {:mvn/version " 0.11.0 " }}}
117
126
```
118
127
119
128
Then use the library:
@@ -181,7 +190,12 @@ In order to load the standard configuration file from Leiningen, add the
181
190
182
191
* ` :indents ` -
183
192
a map of var symbols to indentation rules, i.e. ` {symbol [& rules]} ` .
184
- See [ INDENTS.md] [ ] for a complete explanation.
193
+ See [ INDENTS.md] [ ] for a complete explanation. This will ** replace**
194
+ the default indents.
195
+
196
+ * ` :extra-indents ` -
197
+ the same as ` :indents ` , except that this will ** append** to the
198
+ default indents.
185
199
186
200
* ` :alias-map ` -
187
201
a map of namespace alias strings to fully qualified namespace
0 commit comments