Skip to content

Commit d5b06c5

Browse files
committed
Fix formatting of options in README
1 parent 646b593 commit d5b06c5

1 file changed

Lines changed: 20 additions & 19 deletions

File tree

README.md

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -260,29 +260,30 @@ In order to load the standard configuration file from Leiningen, add the
260260
true if cljfmt should align the keys and values of maps such that they
261261
line up in columns. Defaults to false. **Experimental.**
262262

263-
* `:align-single-column-lines?` -
264-
true if cljfmt should include lines with single columns (where the
265-
value is on the next line) when calculating column alignment. When
266-
false, forms with wrapped values won't cause excessive horizontal
267-
padding in other lines. Only applies when `:align-form-columns?` or
268-
`:align-map-columns?` is true. Defaults to false. **Experimental.**
263+
* `:align-single-column-lines?` -
264+
true if cljfmt should include lines with single columns (where the
265+
value is on the next line) when calculating column alignment. When
266+
false, forms with wrapped values won't cause excessive horizontal
267+
padding in other lines. Only applies when `:align-form-columns?` or
268+
`:align-map-columns?` is true. Defaults to false. **Experimental.**
269269

270270
* `blank-lines-separate-alignment` -
271-
true if cljfmt should treat blank lines as separators when
272-
aligning columns. When enabled, alignment groups are separated by
273-
blank lines, allowing independent alignment within each group.
274-
Defaults to false. **Experimental.**
275-
276-
* `:blank-line-forms` - map of symbols that tell cljfmt which forms are allowed
277-
to have blank lines inside of them. The value may be either `:all`, which
278-
means blank lines are allowed between all elements in the form, e.g. `{'cond
279-
:all}` to allow blank lines between any of the elements inside `cond`; or it
280-
may be a set of element indexes that are allowed to have blank lines, e.g.
281-
`{'let #{0}}`, to allow blank lines in the binding of a `let` form. This
282-
option will **replace** the default blank line forms; use `:extra-blank-line`
283-
forms to add additional ones. Used by `:remove-blank-lines-in-forms?`.
271+
true if cljfmt should treat blank lines as separators when aligning
272+
columns. When enabled, alignment groups are separated by blank lines,
273+
allowing independent alignment within each group. Defaults to false.
284274
**Experimental.**
285275

276+
* `:blank-line-forms` -
277+
a map of symbols that tell cljfmt which forms are allowed to have
278+
blank lines inside of them. The value may be either `:all`, which
279+
means blank lines are allowed between all elements in the form, e.g.
280+
`{'cond :all}` to allow blank lines between any of the elements
281+
inside `cond`; or it may be a set of element indexes that are allowed
282+
to have blank lines, e.g. `{'let #{0}}`, to allow blank lines in the
283+
binding of a `let` form. This option will **replace** the default
284+
blank line forms; use `:extra-blank-line` forms to add additional
285+
ones. Used by `:remove-blank-lines-in-forms?`. **Experimental.**
286+
286287
* `:extra-aligned-forms` -
287288
the same as `:aligned-forms`, except that this will **append** to the
288289
default aligned forms. **Experimental.**

0 commit comments

Comments
 (0)