diff options
| author | Alex Macleod <alex@macleod.io> | 2023-07-03 17:42:48 +0000 |
|---|---|---|
| committer | Alex Macleod <alex@macleod.io> | 2023-07-13 12:44:57 +0000 |
| commit | 2811effe3478a3ce7d1bdde936c6ca8fb08de326 (patch) | |
| tree | 2fae46cd196f04c8cbbdb7ab6cc92ca183514372 /clippy_lints/src/index_refutable_slice.rs | |
| parent | 631faa1bc7601b31f6256693558eea967515a5cf (diff) | |
Add `imports_granularity = "Module"` to rustfmt.toml
Diffstat (limited to 'clippy_lints/src/index_refutable_slice.rs')
| -rw-r--r-- | clippy_lints/src/index_refutable_slice.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clippy_lints/src/index_refutable_slice.rs b/clippy_lints/src/index_refutable_slice.rs index 7a269e98ff1..01a7c497cbe 100644 --- a/clippy_lints/src/index_refutable_slice.rs +++ b/clippy_lints/src/index_refutable_slice.rs @@ -13,7 +13,8 @@ use rustc_lint::{LateContext, LateLintPass}; use rustc_middle::hir::nested_filter; use rustc_middle::ty; use rustc_session::{declare_tool_lint, impl_lint_pass}; -use rustc_span::{symbol::Ident, Span}; +use rustc_span::symbol::Ident; +use rustc_span::Span; declare_clippy_lint! { /// ### What it does |
