diff options
Diffstat (limited to 'tools/lint.js')
-rwxr-xr-x | tools/lint.js | 13 |
1 files changed, 1 insertions, 12 deletions
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", }); |