diff options
author | HampusM <hampus@hampusmat.com> | 2023-03-12 20:17:37 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-03-12 20:17:37 +0100 |
commit | 9e99dbb543ab92762b8c92f1d0ada9c99d7167c9 (patch) | |
tree | 7c6cd4899615acdfa27fcea86f217cba52b100cf /rustfmt.toml | |
parent | 9d3694c18d141d1ddffec4fc49a7d340bfdb5d3f (diff) |
add project & mock macro
Diffstat (limited to 'rustfmt.toml')
-rw-r--r-- | rustfmt.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..4d1e29f --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1,11 @@ +max_width = 90 +brace_style = "AlwaysNextLine" +group_imports = "StdExternalCrate" +wrap_comments = true +comment_width = 90 +format_code_in_doc_comments = true +imports_layout = "HorizontalVertical" +imports_granularity = "Module" +newline_style = "Unix" +reorder_impl_items = true + |