File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4747,6 +4747,7 @@ Released 2018-09-13
47474747[ `iter_skip_next` ] : https://rust-lang.github.io/rust-clippy/master/index.html#iter_skip_next
47484748[ `iter_with_drain` ] : https://rust-lang.github.io/rust-clippy/master/index.html#iter_with_drain
47494749[ `iterator_step_by_zero` ] : https://rust-lang.github.io/rust-clippy/master/index.html#iterator_step_by_zero
4750+ [ `join_absolute_path` ] : https://rust-lang.github.io/rust-clippy/master/index.html#join_absolute_path
47504751[ `just_underscores_and_digits` ] : https://rust-lang.github.io/rust-clippy/master/index.html#just_underscores_and_digits
47514752[ `large_const_arrays` ] : https://rust-lang.github.io/rust-clippy/master/index.html#large_const_arrays
47524753[ `large_digit_groups` ] : https://rust-lang.github.io/rust-clippy/master/index.html#large_digit_groups
@@ -4935,7 +4936,6 @@ Released 2018-09-13
49354936[ `partialeq_ne_impl` ] : https://rust-lang.github.io/rust-clippy/master/index.html#partialeq_ne_impl
49364937[ `partialeq_to_none` ] : https://rust-lang.github.io/rust-clippy/master/index.html#partialeq_to_none
49374938[ `path_buf_push_overwrite` ] : https://rust-lang.github.io/rust-clippy/master/index.html#path_buf_push_overwrite
4938- [ `join_absolute_path` ] : https://rust-lang.github.io/rust-clippy/master/index.html#join_absolute_path
49394939[ `pattern_type_mismatch` ] : https://rust-lang.github.io/rust-clippy/master/index.html#pattern_type_mismatch
49404940[ `permissions_set_readonly_false` ] : https://rust-lang.github.io/rust-clippy/master/index.html#permissions_set_readonly_false
49414941[ `positional_named_format_parameters` ] : https://rust-lang.github.io/rust-clippy/master/index.html#positional_named_format_parameters
Original file line number Diff line number Diff line change @@ -350,6 +350,7 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
350350 crate :: methods:: ITER_OVEREAGER_CLONED_INFO ,
351351 crate :: methods:: ITER_SKIP_NEXT_INFO ,
352352 crate :: methods:: ITER_WITH_DRAIN_INFO ,
353+ crate :: methods:: JOIN_ABSOLUTE_PATH_INFO ,
353354 crate :: methods:: MANUAL_FILTER_MAP_INFO ,
354355 crate :: methods:: MANUAL_FIND_MAP_INFO ,
355356 crate :: methods:: MANUAL_NEXT_BACK_INFO ,
@@ -380,7 +381,6 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
380381 crate :: methods:: OR_FUN_CALL_INFO ,
381382 crate :: methods:: OR_THEN_UNWRAP_INFO ,
382383 crate :: methods:: PATH_BUF_PUSH_OVERWRITE_INFO ,
383- crate :: methods:: JOIN_ABSOLUTE_PATH_INFO ,
384384 crate :: methods:: RANGE_ZIP_WITH_LEN_INFO ,
385385 crate :: methods:: REPEAT_ONCE_INFO ,
386386 crate :: methods:: RESULT_MAP_OR_INTO_OPTION_INFO ,
You can’t perform that action at this time.
0 commit comments