forked from Coreoz/Plume-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
56 lines (41 loc) · 800 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
root = true
# Valeurs par defaut
[*]
charset = utf-8
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 120
end_of_line = lf
[*.{kt,kts}]
indent_size = 4
ktlint_code_style = official
ktlint_standard_annotation = disabled
ktlint_function_signature_rule_force_multiline_when_parameter_count_greater_or_equal_than = 4
ktlint_ignore_back_ticked_identifier = false
[*.java]
indent_size = 4
[*.conf]
indent_size = 2
[*.{ts,tsx,js,jsx}]
indent_size = 2
[*.xml]
indent_size = 4
[*.{css,scss,sass}]
indent_size = 2
[*.json]
indent_size = 2
[*.gradle]
indent_size = 4
[*.yml]
indent_size = 2
[*.properties]
indent_size = 2
[*.sh]
indent_size = 2
[*.html]
indent_size = 2
[*.md]
max_line_length = 0
trim_trailing_whitespace = false