forked from build-trust/ockam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
39 lines (32 loc) · 929 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
# This .editorconfig file specifies conventions for character set, spacing, indentation etc.
# followed by the source code in this project.
#
# When contributing code, please use an editor that supports .editorconfig
# https://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2
# Let the corresponding language formatters deal with indent size
[{{*.{ex,exs,erl,c,h,rs,cmake,cmake.in,stderr,ts,md},CMakeLists.txt,Cargo.lock}}]
indent_size = unset
[*.{drawio,svg}]
trim_trailing_whitespace = unset
insert_final_newline = unset
[Makefile]
# Make requires tab.
indent_style = tab
[*.cddl]
indent_size = unset
# Ignore paths
[/implementations/rust/ockam/ockam_command/static/**]
charset = ""
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
indent_style = unset
indent_size = unset