-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy path.editorconfig
46 lines (38 loc) · 1.28 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# EditorConfig is awesome:
# - https://EditorConfig.org
# - https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
# - https://blog.logrocket.com/using-prettier-eslint-automate-formatting-fixing-javascript/
# - https://prettier.io/docs/en/options.html
# top-most EditorConfig file
root = true
[*]
charset = utf-8
# end_of_line = lf | crlf
# indent_size = 2
# indent_style = tab
insert_final_newline = true
# supported in only some editors; instead use prettier.printWidth
max_line_length = 120
trim_trailing_whitespace = true
[*.{markdown,md,mdx}]
indent_style = space
trim_trailing_whitespace = false
[*.{json,yaml,yml,toml}]
# indent_size = 2
indent_style = space
[Dockerfile]
# indent_size = 4
indent_style = space
[*.{kt,kts}]
max_line_length = 160
ij_kotlin_allow_trailing_comma_on_call_site = false
ij_kotlin_allow_trailing_comma = false
ktlint_standard_no-wildcard-imports = disabled
ktlint_standard_argument-list-wrapping = disabled
ktlint_standard_if-else-wrapping = disabled
ktlint_standard_if-else-bracing = disabled
ktlint_standard_multiline-if-else = disabled
ktlint_standard_function-signature = disabled
ktlint_standard_blank-line-before-declaration = disabled
ktlint_standard_multiline-expression-wrapping = disabled
ktlint_standard_string-template-indent = disabled