1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

update third_party (#8253)

This commit is contained in:
Bartek Iwańczuk 2020-11-05 16:49:03 +01:00 committed by GitHub
parent 791119d4af
commit d96823b2ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit 76b283c420be9302309e94394d1b3f1ebb425f29
Subproject commit 9aff0d56e9920c26f8b2eca8714f7e9474fd65c2

View file

@ -10,10 +10,10 @@ prerequisite to run this before code check in.
To run formatting:
```sh
deno run -A --unstable ./tools/format.js
deno run --allow-read --allow-write --allow-run --unstable ./tools/format.js
```
## lint.py
## lint.js
This script will lint the code base (currently using dlint, clippy). It is a
prerequisite to run this before code check in.
@ -21,5 +21,5 @@ prerequisite to run this before code check in.
To run linting:
```sh
deno run -A --unstable ./tools/lint.js
deno run --allow-read --allow-write --allow-run --unstable ./tools/lint.js
```