-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
47 lines (39 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
# This is the top-most .editorconfig file; do not search in parent directories.
root = true
# An attempt to comply with the official source code style.
#
# With the absence of an '.editorconfig' and consistent styling
# across the codebase, this '.editorconfig' will only try to
# protect the original styling of the altered files (easier diffs).
[{manifest.json,cardbookComposeMsg.css,mainToolbarButton.css,wdw_cardbookConfiguration.xhtml}]
charset = utf-8
end_of_line = CRLF
indent_size = 2
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
[{README.md,version.txt,cardbook*.svg}]
charset = utf-8
end_of_line = CRLF
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[README.md]
trim_trailing_whitespace = false
[version.txt]
end_of_line = LF
# Out of scope
#
# tasks & notes
[*.{tasks,note}]
charset = utf-8
end_of_line = LF
indent_size = 2
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
# notes
[*.note]
indent_style = space
trim_trailing_whitespace = false