generated from kotlin-hands-on/advent-of-code-kotlin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
31 lines (29 loc) · 1.03 KB
/
.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
31
# IntelliJ allows to export the code style in the .editorconfig format. These are the settings
# from the most recent settings for SquareAndroid from here:
#
# https://github.com/square/java-code-styles
#
# Every time someone changes Square's code style we should update the config here, too. These
# settings override the selected code style. This means nobody needs to import the code style
# anymore and we can change settings for all developers here at once.
#
# Some keys were manually changed:
# * insert_final_newline (is false, changed to true, expected by KtLint)
# * ktlint_ignore_back_ticked_identifier (enabled, see comment below)
# * root (see comment below)
# Tells tools to stop searching upwards.
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
max_line_length = 100
tab_width = 4
ij_continuation_indent_size = 4
ij_formatter_off_tag = @formatter:off
ij_formatter_on_tag = @formatter:on
ij_formatter_tags_enabled = false
ij_smart_tabs = false
ij_wrap_on_typing = false