git clone git@github.com:bidoubiwa/turbo-json.git
cd turbo-json
Make turbo-json
a global command.
cargo install --path .
The following will fetch all files inside misc recursively and output it's combined JSON.
With a local run:
cargo run --release -- [file ...]
example:
cargo run --release -- tests/misc/**/*
With the global install:
turbo-json [files ...]
example:
turbo-json misc/**/*
Watches files, output stdout in output.json
and show clippy output in stdout.
cargo watch -x 'clippy && cargo run -- tests/misc/**/* | tee output.json' --ignore output.json