This repository has been archived by the owner on Sep 6, 2023. It is now read-only.
forked from EstebanBorai/local-ip-address
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rustfmt.toml
278 lines (216 loc) · 6.88 KB
/
rustfmt.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# Use verbose output.
# Default: false
# verbose =
# Do not reformat out of line modules.
# Default: false
# skip_children =
# Lines to format; this is not supported in rustfmt.toml,
# and can only be specified via the --file-lines option.
# file_lines =
# Maximum width of each line.
# Default: 100
# max_width =
# Ideal width of each line.
# Default: 80
# max_width =
# Number of spaces per tab.
# Default: 4
# tab_spaces = 4
# Maximum width of the args of a function call before
# falling back to vertical formatting.
# Default: 60
# fn_call_width =
# Maximum width in the body of a struct lit before falling back to vertical formatting.
# Default: 16
# struct_lit_width =
# Maximum width in the body of a struct variant before falling back to vertical formatting.
# Default: 35
# struct_variant_width =
# Always print the abi for extern items.
# Default: true
# force_explicit_abi =
# Unix or Windows line endings.
# Values: Windows | Unix | Native
# Default: Unix
# newline_style =
# Brace style for functions.
# Values: AlwaysNextLine | PreferSameLine | SameLineWhere
# Default: SameLineWhere
# fn_brace_style =
# Brace style for structs and enums.
# Values: AlwaysNextLine | PreferSameLine | SameLineWhere
# Default: SameLineWhere
# item_brace_style =
# Brace style for control flow construct.
# Values: AlwaysSameLine | ClosingNextLine | AlwaysNextLine
# Default: AlwaysSameLine
# control_brace_style =
# Put empty-body implementations on a single line.
# Default: true
# impl_empty_single_line =
# Put empty-body functions on a single line.
# Default: true
# fn fn_empty_single_line =
# Put single-expression functions on a single line.
# Default: false
# fn_single_line =
# Location of return type in function declaration.
# Values: WithArgs | WithWhereClause
# Default: WithArgs
# fn_return_indent =
# If function argument parenthesis goes on a newline.
# Default: true
# fn_args_paren_newline =
# Argument density in functions.
# Values: Compressed | Tall | CompressedIfEmpty | Vertical
# Default: Tall
# fn_args_density =
# Layout of function arguments.
# Values: Visual | Block | BlockAlways
# Default: Visual
# fn_args_layout =
# Indent on function arguments.
# Values: Inherit | Tabbed | Visual
# Default: Visual
# fn_arg_indent =
# Determines if '+' or '=' are wrapped in spaces in the punctuation of types.
# Values: Compressed | Wide
# Default: Wide
# type_punctuation_density =
# Density of a where clause.
# Values: Compressed | Tall | CompressedIfEmpty | Vertical
# Default: CompressedIfEmpty
# where_density =
# Indentation of a where clause.
# Values: Inherit | Tabbed | Visual
# Default: Tabbed
# where_indent =
# Element layout inside a where clause.
# Values: Vertical | Horizontal | HorizontalVertical | Mixed
# Default: Vertical
# where_layout =
# Indentation style of a where predicate.
# Values: Inherit | Tabbed | Visual
# Default: Visual
# where_pred_indent =
# Put a trailing comma on where clauses.
# Default: false
# where_trailing_comma =
# Indentation of generics.
# Values: Inherit | Tabbed | Visual
# Default: Visual
# generics_indent =
# If there is a trailing comma on structs.
# Values: Always | Never | Vertical
# Default: Vertical
# struct_trailing_comma =
# If there is a trailing comma on literal structs.
# Values: Always | Never | Vertical
# Default: Vertical
# struct_lit_trailing_comma =
# Style of struct definition.
# Values: Visual | Block
# Default: Block
# struct_lit_style =
# Multiline style on literal structs.
# Values: PreferSingle | ForceMulti
# Default: PreferSingle
# struct_lit_multiline_style =
# Put a trailing comma on enum declarations.
# Default: true
# enum_trailing_comma =
# Report all, none or unnumbered occurrences of TODO in source file comments.
# Values: Always | Unnumbered | Never
# Default: Never
# report_todo =
# Report all, none or unnumbered occurrences of FIXME in source file comments.
# Values: Always | Unnumbered | Never
# Default: Never
# report_fixme =
# Indent on chain base.
# Values: Inherit | Tabbed | Visual
# Default: Tabbed
# chain_base_indent =
# Indentation of chain.
# Values: Inherit | Tabbed | Visual
# Default: Tabbed
# chain_indent =
# Allow last call in method chain to break the line.
# Default: true
# chains_overflow_last =
# Reorder import statements alphabetically.
# Default: false
reorder_imports = false
# Reorder lists of names in import statements alphabetically.
# Default: false
# reorder_imported_names =
# Maximum line length for single line if-else expressions.
# A value of zero means always break if-else expressions.
# Default: 50
# single_line_if_else_max_width =
# Format string literals where necessary.
# Default: true
# format_strings =
# Always format string literals.
# Default: false
# force_format_strings =
# Retain some formatting characteristics from the source code.
# Default: true
# take_source_hints =
# Use tab characters for indentation, spaces for alignment.
# Default: false
# hard_tabs =
# Break comments to fit on the line.
# Default: false
# wrap_comments =
# Convert /* */ comments to // comments where possible.
# Default: false
# normalize_comments =
# Wrap multiline match arms in blocks.
# Default: true
# wrap_match_arms =
# Put a trailing comma after a block based match arm (non-block arms are not affected).
# Default: false
# match_block_trailing_comma =
# Put a trailing comma after a wildcard arm.
# Default: true
# match_wildcard_trailing_comma =
# How many lines a closure must have before it is block indented.
# -1 means never use block indent.
# Type: <signed integer>
# Default: 5
# closure_block_indent_threshold =
# Leave a space before the colon in a type annotation.
# Default: false
# space_before_type_annotation =
# Leave a space after the colon in a type annotation.
# Default: true
# space_after_type_annotation_colon =
# Leave a space before the colon in a trait or lifetime bound.
# Default: false
# space_before_bound =
# Leave a space after the colon in a trait or lifetime bound.
# Default: true
# space_after_bound_colon =
# Put spaces around the .. and ... range operators.
# Default: false
# spaces_around_ranges =
# Put spaces within non-empty generic arguments.
# Default: false
# spaces_within_angle_brackets =
# Put spaces within non-empty square brackets.
# Default: false
# spaces_within_square_brackets =
# Put spaces within non-empty parentheses.
# Default: false
# spaces_within_parens =
# Replace uses of the try! macro by the ? shorthand.
# Default: false
# use_try_shorthand =
# What Write Mode to use when none is supplied: Replace, Overwrite, Display, Diff, Coverage.
# Values: Replace | Overwrite | Display | Diff | Coverage | Plain | Checkstyle
# Default: Replace
# write_mode =
# Replace strings of _ wildcards by a single .. in tuple patterns.
# Default: false
# condense_wildcard_suffices =