deno/tools
2020-11-05 16:49:03 +01:00
..
build_benchmark_jsons.js build: rewrite tools/ scripts to deno (#8247) 2020-11-05 15:53:21 +01:00
format.js build: rewrite tools/ scripts to deno (#8247) 2020-11-05 15:53:21 +01:00
lint.js build: rewrite tools/ scripts to deno (#8247) 2020-11-05 15:53:21 +01:00
README.md update third_party (#8253) 2020-11-05 16:49:03 +01:00
util.js build: rewrite tools/ scripts to deno (#8247) 2020-11-05 15:53:21 +01:00

Tools

Documentation for various tooling in support of Deno development.

format.js

This script will format the code (currently using dprint, rustfmt). It is a prerequisite to run this before code check in.

To run formatting:

deno run --allow-read --allow-write --allow-run --unstable ./tools/format.js

lint.js

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:

deno run --allow-read --allow-write --allow-run --unstable ./tools/lint.js