blob: fa63180a86a4d2a0c90599983b8c7fa55973d4fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# This is an .editorconfig that ktlint will "stop" at.
# If an .editorconfig file exists in any parent directory of the checkout
# directory, ktlint will fail because it uses those settings to determine what
# the indentation should be.
root = True
[*.kt]
indent_size = 4
indent_style = space
ij_kotlin_allow_trailing_comma_on_call_site=true
ij_kotlin_allow_trailing_comma=true
|