1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 21:50:00 -05:00
denoland-deno/tools/README.md

26 lines
489 B
Markdown
Raw Normal View History

2020-05-08 14:28:02 +01:00
# Tools
Documentation for various tooling in support of Deno development.
2020-05-08 14:28:02 +01:00
## format.js
2020-05-08 14:28:02 +01:00
This script will format the code (currently using dprint, rustfmt). It is a
prerequisite to run this before code check in.
2020-05-08 14:28:02 +01:00
To run formatting:
```sh
deno run -A --unstable ./tools/format.js
2020-05-08 14:28:02 +01:00
```
## lint.py
This script will lint the code base (currently using dlint, clippy). It is a
prerequisite to run this before code check in.
2020-05-08 14:28:02 +01:00
To run linting:
```sh
deno run -A --unstable ./tools/lint.js
2020-05-08 14:28:02 +01:00
```