diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-26 23:35:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-26 22:35:43 +0000 |
commit | d889f996577a6345d08c4ce71063be6d765fb5ec (patch) | |
tree | 18e8e2b37b7644ec8f62c21e74c92c217f0813ae /tools/README.md | |
parent | 84fb2ad71b94ce773cefcbc868b160a73c52ab47 (diff) |
chore: use granular unstable flags in tools/ (#22138)
Diffstat (limited to 'tools/README.md')
-rw-r--r-- | tools/README.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/README.md b/tools/README.md index 012302733..71722f55b 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/<script> +cargo run -- run --allow-read --allow-write --allow-run ./tools/<script> ``` ## wgpu_sync.js @@ -51,7 +51,7 @@ on top, somewhat similar to `git subtree`. To run the _copyright checker_: ```sh -deno run --allow-read --allow-run --unstable ./tools/copyright_checker.js +deno run --allow-read --allow-run ./tools/copyright_checker.js ``` Then it will check all code files in the repository and report any files that |