forked from BetonQuest/BetonQuest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
40 lines (34 loc) · 831 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
# EditorConfig is awesome: https://EditorConfig.org
root = true
[*]
charset = utf-8
insert_final_newline = true
indent_style = space
indent_size = 2
#The line ending lf is only checked in the build pipeline. Don't remove this and the following line.
#end_of_line = lf
[docs/_media/**]
#end_of_line = unset
[/.idea/**]
insert_final_newline = unset
[CHANGELOG.md]
indent_size = 4
[*.java]
indent_size = 4
ij_continuation_indent_size = 8
trim_trailing_whitespace = true
max_line_length = 120
curly_bracket_next_line = false
spaces_around_operators = true
spaces_around_brackets = outside
indent_brace_style = K&R
continuation_indent_size = 8
line_comment = //
block_comment_start = /*
block_comment_end = */
[*.py]
indent_size = 4
# Ignore Python Virtualenv files
[/{lib,venv,.venv}/**]
indent_style = unset
indent_size = unset