From ff5516531df1c224136fbfcb4f4b29196ad00cd8 Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Fri, 23 Feb 2024 15:02:23 +0100 Subject: [PATCH] use table array instead of inline tables in clippy.toml Co-authored-by: Nemo157 --- clippy.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clippy.toml b/clippy.toml index ad8b2692d..df7b6040e 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1,3 +1,3 @@ -disallowed-types = [ - { path = "axum::extract::Path", reason = "use our own custom web::extractors::Path for a nicer error response" }, -] +[[disallowed-types]] +path = "axum::extract::Path" +reason = "use our own custom web::extractors::Path for a nicer error response"