2018-02-03 09:51:06 +00:00
|
|
|
[alias]
|
2018-10-04 20:43:58 +00:00
|
|
|
# Automatically generates the ast and syntax kinds files
|
2019-06-10 22:47:37 +00:00
|
|
|
gen-syntax = "run --package ra_tools --bin ra_tools -- gen-syntax"
|
2019-01-23 18:41:23 +00:00
|
|
|
# Extracts the tests from
|
2019-06-10 22:47:37 +00:00
|
|
|
gen-tests = "run --package ra_tools --bin ra_tools -- gen-tests"
|
2019-01-23 18:41:23 +00:00
|
|
|
# Installs ra_lsp_server
|
|
|
|
install-lsp = "install --path crates/ra_lsp_server --force"
|
2019-01-29 17:02:06 +00:00
|
|
|
# Installs ra_lsp_server with the jemalloc feature
|
|
|
|
jinstall-lsp = "install --path crates/ra_lsp_server --force --features jemalloc"
|
2018-12-31 13:14:06 +00:00
|
|
|
# Installs the visual studio code extension
|
2019-06-10 22:47:37 +00:00
|
|
|
install-code = "run --package ra_tools --bin ra_tools -- install-code"
|
2018-12-31 13:14:06 +00:00
|
|
|
# Formats the full repository or installs the git hook to do it automatically.
|
2019-06-10 22:47:37 +00:00
|
|
|
format = "run --package ra_tools --bin ra_tools -- format"
|
|
|
|
format-hook = "run --package ra_tools --bin ra_tools -- format-hook"
|
2019-06-03 13:43:06 +00:00
|
|
|
# Run clippy
|
2019-06-10 22:47:37 +00:00
|
|
|
lint = "run --package ra_tools --bin ra_tools -- lint"
|
2019-06-03 13:43:06 +00:00
|
|
|
|
2018-12-31 13:14:06 +00:00
|
|
|
# Runs the fuzzing test suite (currently only parser)
|
2019-06-10 22:47:37 +00:00
|
|
|
fuzz-tests = "run --package ra_tools --bin ra_tools -- fuzz-tests"
|
2018-07-30 19:17:33 +00:00
|
|
|
|
2018-12-31 13:14:06 +00:00
|
|
|
render-test = "run --package ra_cli -- render-test"
|
|
|
|
# Parse a file. This should be piped the file contents
|
|
|
|
parse = "run --package ra_cli -- parse"
|