mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-16 01:38:13 +00:00
20 lines
1,017 B
Text
20 lines
1,017 B
Text
[alias]
|
|
# Automatically generates the ast and syntax kinds files
|
|
gen-syntax = "run --package tools --bin tools -- gen-syntax"
|
|
# Extracts the tests from
|
|
gen-tests = "run --package tools --bin tools -- gen-tests"
|
|
# Installs ra_lsp_server
|
|
install-lsp = "install --path crates/ra_lsp_server --force"
|
|
# Installs ra_lsp_server with the jemalloc feature
|
|
jinstall-lsp = "install --path crates/ra_lsp_server --force --features jemalloc"
|
|
# Installs the visual studio code extension
|
|
install-code = "run --package tools --bin tools -- install-code"
|
|
# Formats the full repository or installs the git hook to do it automatically.
|
|
format = "run --package tools --bin tools -- format"
|
|
format-hook = "run --package tools --bin tools -- format-hook"
|
|
# Runs the fuzzing test suite (currently only parser)
|
|
fuzz-tests = "run --package tools --bin tools -- fuzz-tests"
|
|
|
|
render-test = "run --package ra_cli -- render-test"
|
|
# Parse a file. This should be piped the file contents
|
|
parse = "run --package ra_cli -- parse"
|