mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
e1a6f87a98
This change is the result of a global reformatting in IDEA now that `.editorconfig` settings are in place. Note that Editorconfig's `continuation_indent_size` property [1] was also added and set to 8 here, as this reflects the dominant style already present in the codebase. i.e. in created a much smaller diff to set the continuation indent to 8 that would have been created leaving this property out and letting it default to 4. [1]: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
11 lines
176 B
INI
11 lines
176 B
INI
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 4
|
|
continuation_indent_size = 8
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|