-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
30 lines (21 loc) · 949 Bytes
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
root = true
[*{kt,kts}]
# sometimes this is good for readibility
ktlint_standard_string-template = disabled
# sometimes this is good thing when a lot of code is packed
ktlint_standard_no-empty-first-line-in-method-block = disabled
# maybe in the future
ktlint_standard_spacing-between-declarations-with-comments = disabled
# this is no JS or TS
ktlint_standard_trailing-comma-on-call-site = disabled
ktlint_standard_trailing-comma-on-declaration-site = disabled
# not sure about this, but i dont like it :)
ktlint_standard_colon-spacing = disabled
# this is nitpicking
ktlint_standard_import-ordering = disabled
ktlint_standard_no-wildcard-imports = disabled
# sometimes this is good thing
ktlint_standard_filename = disabled
# we have a lot of networking object so to keep them as compressed as possible, we want them one-lined
ktlint_standard_annotation = disabled
ktlint_standard_spacing-between-declarations-with-annotations = disabled