From 883269f1f183428f60c54223135d8dd25977b3cd Mon Sep 17 00:00:00 2001 From: Mathias Lafeldt Date: Thu, 11 Aug 2022 15:43:27 +0200 Subject: chore: move lint rules to cargo config for better editor integration (#15453) --- tools/lint.js | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'tools') diff --git a/tools/lint.js b/tools/lint.js index ee438ed8b..62f73119f 100755 --- a/tools/lint.js +++ b/tools/lint.js @@ -109,18 +109,7 @@ async function clippy() { } const { success } = await Deno.spawn("cargo", { - args: [ - ...cmd, - "--", - "-D", - "clippy::all", - "-D", - "clippy::await_holding_refcell_ref", - "-D", - "clippy::missing_safety_doc", - "-D", - "clippy::undocumented_unsafe_blocks", - ], + args: cmd, stdout: "inherit", stderr: "inherit", }); -- cgit v1.2.3