File tree 2 files changed +2
-2
lines changed
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
4747
4747
[ `iter_skip_next` ] : https://rust-lang.github.io/rust-clippy/master/index.html#iter_skip_next
4748
4748
[ `iter_with_drain` ] : https://rust-lang.github.io/rust-clippy/master/index.html#iter_with_drain
4749
4749
[ `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
4750
4751
[ `just_underscores_and_digits` ] : https://rust-lang.github.io/rust-clippy/master/index.html#just_underscores_and_digits
4751
4752
[ `large_const_arrays` ] : https://rust-lang.github.io/rust-clippy/master/index.html#large_const_arrays
4752
4753
[ `large_digit_groups` ] : https://rust-lang.github.io/rust-clippy/master/index.html#large_digit_groups
@@ -4935,7 +4936,6 @@ Released 2018-09-13
4935
4936
[ `partialeq_ne_impl` ] : https://rust-lang.github.io/rust-clippy/master/index.html#partialeq_ne_impl
4936
4937
[ `partialeq_to_none` ] : https://rust-lang.github.io/rust-clippy/master/index.html#partialeq_to_none
4937
4938
[ `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
4939
4939
[ `pattern_type_mismatch` ] : https://rust-lang.github.io/rust-clippy/master/index.html#pattern_type_mismatch
4940
4940
[ `permissions_set_readonly_false` ] : https://rust-lang.github.io/rust-clippy/master/index.html#permissions_set_readonly_false
4941
4941
[ `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] = &[
350
350
crate :: methods:: ITER_OVEREAGER_CLONED_INFO ,
351
351
crate :: methods:: ITER_SKIP_NEXT_INFO ,
352
352
crate :: methods:: ITER_WITH_DRAIN_INFO ,
353
+ crate :: methods:: JOIN_ABSOLUTE_PATH_INFO ,
353
354
crate :: methods:: MANUAL_FILTER_MAP_INFO ,
354
355
crate :: methods:: MANUAL_FIND_MAP_INFO ,
355
356
crate :: methods:: MANUAL_NEXT_BACK_INFO ,
@@ -380,7 +381,6 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
380
381
crate :: methods:: OR_FUN_CALL_INFO ,
381
382
crate :: methods:: OR_THEN_UNWRAP_INFO ,
382
383
crate :: methods:: PATH_BUF_PUSH_OVERWRITE_INFO ,
383
- crate :: methods:: JOIN_ABSOLUTE_PATH_INFO ,
384
384
crate :: methods:: RANGE_ZIP_WITH_LEN_INFO ,
385
385
crate :: methods:: REPEAT_ONCE_INFO ,
386
386
crate :: methods:: RESULT_MAP_OR_INTO_OPTION_INFO ,
You can’t perform that action at this time.
0 commit comments