From d889f996577a6345d08c4ce71063be6d765fb5ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 26 Jan 2024 23:35:43 +0100 Subject: [PATCH] chore: use granular unstable flags in tools/ (#22138) --- tools/README.md | 8 ++++---- tools/build_bench.ts | 2 +- tools/copyright_checker.js | 2 +- tools/format.js | 2 +- tools/lint.js | 2 +- tools/napi/generate_symbols_lists.js | 2 +- tools/release/deno_workspace.ts | 2 +- tools/wpt/runner.ts | 4 +++- 8 files changed, 13 insertions(+), 11 deletions(-) diff --git a/tools/README.md b/tools/README.md index 012302733b..71722f55b8 100644 --- a/tools/README.md +++ b/tools/README.md @@ -10,7 +10,7 @@ prerequisite to run this before code check in. To run formatting: ```sh -deno run --allow-read --allow-write --allow-run --unstable ./tools/format.js +deno run --allow-read --allow-write --allow-run ./tools/format.js ``` ## lint.js @@ -21,14 +21,14 @@ prerequisite to run this before code check in. To run linting: ```sh -deno run --allow-read --allow-write --allow-run --unstable ./tools/lint.js +deno run --allow-read --allow-write --allow-run ./tools/lint.js ``` Tip: You can also use cargo to run the current or pending build of the deno executable ```sh -cargo run -- run --allow-read --allow-write --allow-run --unstable ./tools/