mirror of
https://github.com/denoland/deno.git
synced 2024-11-14 16:33:45 -05:00
960f9ccb2e
This commit changes how error occurring in SWC are handled. Changed lexer settings to properly handle TS decorators. Changed output of SWC error to annotate with position in file. |
||
---|---|---|
.. | ||
hyper_hello | ||
testdata | ||
benchmark.py | ||
benchmark_test.py | ||
build_benchmark_jsons.py | ||
deno_http_proxy.ts | ||
deno_tcp.ts | ||
deno_tcp_proxy.ts | ||
format.py | ||
http_benchmark.py | ||
http_server.py | ||
lint.py | ||
node_http.js | ||
node_http_proxy.js | ||
node_tcp.js | ||
node_tcp_promise.js | ||
node_tcp_proxy.js | ||
package.json | ||
pylintrc | ||
README.md | ||
sync_node_modules.py | ||
sync_python_modules.py | ||
test_format.py | ||
test_util.py | ||
third_party.py | ||
throughput_benchmark.py | ||
util.py | ||
util_test.py |
Tools
Documentation for various tooling in support of Deno development
format.py
This script will format the code (currently using prettier, yapf and rustfmt). It is a prerequisite to run this before code check in.
To run formatting:
./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:
./tools/lint.py