@@ -277,6 +277,14 @@ define_Conf! {
277277 /// `".."` can be used as part of the list to indicate, that the configured values should be appended to the
278278 /// default configuration of Clippy. By default, any configuration will replace the default value.
279279 ( 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 ) ,
280288 /// Lint: DOC_MARKDOWN.
281289 ///
282290 /// The list of words this lint should not consider as identifiers needing ticks. The value
@@ -463,14 +471,6 @@ define_Conf! {
463471 ///
464472 /// The maximum byte size a `Future` can have, before it triggers the `clippy::large_futures` lint
465473 ( 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 ) ,
474474}
475475
476476/// Search for the configuration file.
0 commit comments