Skip to content

Commit 6639fe2

Browse files
committed
Fix stupid symlink issue with git.
1 parent eba9720 commit 6639fe2

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

rustfmt.toml

Lines changed: 0 additions & 1 deletion
This file was deleted.

rustfmt.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# apparently certain perfectly standard code style preferences can only be enforced in nightly >_>
2+
unstable_features = true
3+
4+
hard_tabs = true
5+
brace_style = "AlwaysNextLine"
6+
control_brace_style = "AlwaysNextLine"
7+
fn_params_layout = "Compressed"
8+
fn_single_line = true
9+
format_code_in_doc_comments = true
10+
hex_literal_case = "Upper"
11+
imports_indent = "Visual"
12+
imports_layout = "HorizontalVertical"
13+
match_arm_blocks = false
14+
match_block_trailing_comma = true
15+
max_width = 200
16+
imports_granularity = "Item"
17+
newline_style = "Windows"
18+
normalize_comments = true
19+
normalize_doc_attributes = true
20+
overflow_delimited_expr = true
21+
reorder_impl_items = true
22+
reorder_imports = false
23+
group_imports = "StdExternalCrate"
24+
trailing_comma = "Never"
25+
use_field_init_shorthand = true
26+
use_try_shorthand = true
27+
version = "Two"
28+
where_single_line = true
29+
wrap_comments = true

0 commit comments

Comments
 (0)