| commit | fd097c87e9b140eec4d7442c28df94c24be2b73b | [log] [tgz] |
|---|---|---|
| author | Carmi Grushko <carmi@fb.com> | Thu May 28 07:23:25 2020 -0700 |
| committer | Facebook GitHub Bot <facebook-github-bot@users.noreply.github.com> | Thu May 28 07:26:48 2020 -0700 |
| tree | faf34aabb40b7b6979079483ccca0d1ca71e3213 | |
| parent | 81361c48cd04988763b65302336e09a841d62a71 [diff] |
Correctly indent blocky expressions in if-else Summary: This fixes https://github.com/facebookincubator/ktfmt/issues/43 Reviewed By: strulovich Differential Revision: D21760667 fbshipit-source-id: 776084d979f62cba27a5924dd99aceb56d2a9175
ktfmt is a program that pretty-prints (formats) Kotlin code, based on google-java-format.
Note that ktfmt still has some rough edges which we're constantly working on fixing.
The minimum supported runtime version is JDK 11, released September 2018.
| Before Formatting | Formatted by ktfmt |
|---|---|
For comparison, the same code formatted by ktlint and IntelliJ:
Formatted by ktlint | Formatted by IntelliJ |
|---|---|
Download the formatter and run it with:
java -jar /path/to/ktfmt-<VERSION>-jar-with-dependencies.jar [--dropbox-style] [files...]
--dropbox-style makes ktfmt use a block indent of 4 spaces instead of 2. See below for details.
Note: There is no configurability as to the formatter's algorithm for formatting (apart from --dropbox-format). This is a deliberate design decision to unify our code formatting on a single format.
ktfmt vs ktlint vs IntelliJktfmt uses google-java-format's underlying engine, and as such, many items on google-java-format's FAQ apply to ktfmt as well.
In particular,
ktfmt ignores most existing formatting. It respects existing newlines in some places, but in general, its output is determinstic and is independent of the input code.ktfmt exposes no configuration options that govern formatting behavior. See https://github.com/google/google-java-format/wiki/FAQ#i-just-need-to-configure-it-a-bit-differently-how for the rationale.These two properties make ktfmt a good fit in large Kotlin code bases, where consistency is very important.
We created ktfmt because ktlint and IntelliJ sometime fail to produce nice-looking code that fits in 100 columns, as can be seen in the Demo section.
ktfmt uses a 2-space indent; why not 4? any way to change that?Two reasons -
However, we do offer an escape-hatch for projects that absolutely cannot make the move to ktfmt because of 2-space: the --dropbox-style flag changes block indents to 4-space.
pom.xml in IntelliJ. Choose “Open as a Project”FormatterKtTest.kt.mvn installjava -jar core/target/ktfmt-<VERSION>-jar-with-dependencies.jarSee RELEASING.md.
Apache License 2.0