summaryrefslogtreecommitdiff
path: root/tools/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'tools/README.md')
-rw-r--r--tools/README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/README.md b/tools/README.md
index be5b5394d..dff70e9e8 100644
--- a/tools/README.md
+++ b/tools/README.md
@@ -2,24 +2,24 @@
Documentation for various tooling in support of Deno development.
-## format.py
+## format.js
-This script will format the code (currently using dprint, yapf and rustfmt). It
-is a prerequisite to run this before code check in.
+This script will format the code (currently using dprint, rustfmt). It is a
+prerequisite to run this before code check in.
To run formatting:
```sh
-./tools/format.py
+deno run -A --unstable ./tools/format.js
```
## lint.py
-This script will lint the code base (currently using eslint, pylint and clippy).
-It is a prerequisite to run this before code check in.
+This script will lint the code base (currently using dlint, clippy). It is a
+prerequisite to run this before code check in.
To run linting:
```sh
-./tools/lint.py
+deno run -A --unstable ./tools/lint.js
```