|
a |
|
b/.editorconfig |
|
|
1 |
root = true |
|
|
2 |
|
|
|
3 |
[*] |
|
|
4 |
charset = utf-8 |
|
|
5 |
end_of_line = lf |
|
|
6 |
insert_final_newline = true |
|
|
7 |
trim_trailing_whitespace = true |
|
|
8 |
indent_size = 4 |
|
|
9 |
indent_style = space |
|
|
10 |
|
|
|
11 |
[*.{md,yml,yaml,html,css,scss,js}] |
|
|
12 |
indent_size = 2 |
|
|
13 |
|
|
|
14 |
# These files are edited and tested upstream in nf-core/modules |
|
|
15 |
[/modules/nf-core/**] |
|
|
16 |
charset = unset |
|
|
17 |
end_of_line = unset |
|
|
18 |
insert_final_newline = unset |
|
|
19 |
trim_trailing_whitespace = unset |
|
|
20 |
indent_style = unset |
|
|
21 |
[/subworkflows/nf-core/**] |
|
|
22 |
charset = unset |
|
|
23 |
end_of_line = unset |
|
|
24 |
insert_final_newline = unset |
|
|
25 |
trim_trailing_whitespace = unset |
|
|
26 |
indent_style = unset |
|
|
27 |
|
|
|
28 |
[/assets/email*] |
|
|
29 |
indent_size = unset |
|
|
30 |
|
|
|
31 |
# ignore python and markdown |
|
|
32 |
[*.{py,md}] |
|
|
33 |
indent_style = unset |
|
|
34 |
|
|
|
35 |
# ignore ro-crate metadata files |
|
|
36 |
[**/ro-crate-metadata.json] |
|
|
37 |
insert_final_newline = unset |