deno/tools/README.md

26 lines
464 B
Markdown
Raw Normal View History

2020-05-08 13:28:02 +00:00
# Tools
Documentation for various tooling in support of Deno development.
2020-05-08 13:28:02 +00:00
## format.py
This script will format the code (currently using dprint, yapf and rustfmt). It
is a prerequisite to run this before code check in.
2020-05-08 13:28:02 +00:00
To run formatting:
```sh
2020-05-08 13:28:02 +00:00
./tools/format.py
```
## 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.
To run linting:
```sh
2020-05-08 13:28:02 +00:00
./tools/lint.py
```