mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 08:11:03 +00:00
e3c83e42d8
While editing the impl guide markdowns I tried to be inline with what seemingly more common way to indent them: spaces. However, despite that I changed it kept reseting. Turned out the culprit is the .editorconfig file. This commit addresses this issue. I didn't try to deduplicate the rules since I found that the formal specification is a bit ambigious and it is not a big deal anyway.
27 lines
377 B
INI
27 lines
377 B
INI
root = true
|
|
|
|
[*.rs]
|
|
indent_style=tab
|
|
indent_size=tab
|
|
tab_width=4
|
|
max_line_length=120
|
|
end_of_line=lf
|
|
charset=utf-8
|
|
trim_trailing_whitespace=true
|
|
insert_final_newline=true
|
|
|
|
[*.yml]
|
|
indent_style=space
|
|
indent_size=2
|
|
tab_width=8
|
|
end_of_line=lf
|
|
charset=utf-8
|
|
trim_trailing_whitespace=true
|
|
insert_final_newline=true
|
|
|
|
[*.sh]
|
|
indent_style=space
|
|
indent_size=2
|
|
tab_width=8
|
|
end_of_line=lf
|