mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
dc8150e7df
This change adds a .idea/codeStyles/Project.xml file that orders all imports from higher-level layers to lower-level layers, with blank lines between different major packages. The purpose of this approach is to allow the reader to scan the imports in a file efficiently to understand what kind of work the class does, what layers it touches, and so forth. Keeping imports clean and ordered by layer can be a powerful tool in keeping a codebase well organized and tangle-free over time. bisq.* packages are always sorted at the top.
14 lines
218 B
INI
14 lines
218 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
|
|
|
|
[.idea/codeStyles/*.xml]
|
|
indent_size = 2
|