@@ -277,6 +277,14 @@ define_Conf! {
277
277
/// `".."` can be used as part of the list to indicate, that the configured values should be appended to the
278
278
/// default configuration of Clippy. By default, any configuration will replace the default value.
279
279
( disallowed_names: Vec <String > = super :: DEFAULT_DISALLOWED_NAMES . iter( ) . map( ToString :: to_string) . collect( ) ) ,
280
+ /// Lint: SEMICOLON_INSIDE_BLOCK.
281
+ ///
282
+ /// Whether to lint only if it's multiline.
283
+ ( semicolon_inside_block_if_multiline: bool = false ) ,
284
+ /// Lint: SEMICOLON_OUTSIDE_BLOCK.
285
+ ///
286
+ /// Whether to lint only if it's singleline.
287
+ ( semicolon_outside_block_if_singleline: bool = false ) ,
280
288
/// Lint: DOC_MARKDOWN.
281
289
///
282
290
/// The list of words this lint should not consider as identifiers needing ticks. The value
@@ -463,14 +471,6 @@ define_Conf! {
463
471
///
464
472
/// The maximum byte size a `Future` can have, before it triggers the `clippy::large_futures` lint
465
473
( future_size_threshold: u64 = 16 * 1024 ) ,
466
- /// Lint: SEMICOLON_INSIDE_BLOCK.
467
- ///
468
- /// Whether to lint only if it's multiline.
469
- ( semicolon_inside_block_if_multiline: bool = false ) ,
470
- /// Lint: SEMICOLON_OUTSIDE_BLOCK.
471
- ///
472
- /// Whether to lint only if it's singleline.
473
- ( semicolon_outside_block_if_singleline: bool = false ) ,
474
474
}
475
475
476
476
/// Search for the configuration file.
0 commit comments