forked from duckdb/duckdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
53 lines (49 loc) · 1.1 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
47
48
49
50
51
52
53
# Unix-style newlines with a newline ending every file
[*.{c,cpp,h,hpp}]
end_of_line = lf
insert_final_newline = true
indent_style = tab
tab_width = 4
indent_size = tab
trim_trailing_whitespace = true
charset = utf-8
max_line_length = 120
x-soft-wrap-text = true
x-soft-wrap-mode = CharacterWidth
x-soft-wrap-limit = 120
x-show-invisibles = false
x-show-spaces = false
[*.{java}]
end_of_line = lf
insert_final_newline = true
indent_style = tab
tab_width = 4
indent_size = tab
trim_trailing_whitespace = false
charset = utf-8
max_line_length = 120
x-soft-wrap-text = true
x-soft-wrap-mode = CharacterWidth
x-soft-wrap-limit = 120
x-show-invisibles = false
x-show-spaces = false
[*.{test,test_slow,test_coverage,benchmark}]
end_of_line = lf
insert_final_newline = true
indent_style = tab
tab_width = 4
indent_size = tab
trim_trailing_whitespace = false
charset = utf-8
x-soft-wrap-text = false
[Makefile]
end_of_line = lf
insert_final_newline = true
indent_style = tab
tab_width = 4
indent_size = tab
trim_trailing_whitespace = true
charset = utf-8
x-soft-wrap-text = false
[*keywords.list]
insert_final_newline = false