From 215528f4999ecfe931aa00b687095111cb0603d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 10 Mar 2023 08:07:28 -0400 Subject: build: run clippy with --all-features (#18115) --- tools/lint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/lint.js b/tools/lint.js index 699341692..3e62bb844 100755 --- a/tools/lint.js +++ b/tools/lint.js @@ -135,7 +135,7 @@ async function clippy() { console.log("clippy"); const currentBuildMode = buildMode(); - const cmd = ["clippy", "--all-targets", "--locked"]; + const cmd = ["clippy", "--all-targets", "--all-features", "--locked"]; if (currentBuildMode != "debug") { cmd.push("--release"); -- cgit v1.2.3