| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2022-02-22 | Use 2021 edition in ./x.py fmt | bjorn3 | -1/+1 | |
| 2021-05-01 | Allow formatting specific subdirectories | Joshua Nelson | -3/+14 | |
| 2021-02-20 | remove redundant box wrapper | The8472 | -4/+4 | |
| 2021-02-20 | limit rustfmt parallelism by taking -j into account | The8472 | -3/+3 | |
| 2021-02-20 | parallelize x.py test tidy | The8472 | -19/+64 | |
| old: ``` real 0m11.123s user 0m14.495s sys 0m5.227s ``` new: ``` real 0m2.767s user 0m13.014s sys 0m1.691s ``` | ||||
| 2020-09-16 | Remove unnecessary `clone()`s in bootstrap | Joshua Nelson | -5/+3 | |
| The performance difference is negligible, but it makes me feel better. Note that this does not remove some clones in `config`, because it would require changing the logic around (and performance doesn't matter for bootstrap). | ||||
| 2020-08-22 | bootstrap: fix a couple of clippy lint warnings | Matthias Krüger | -1/+1 | |
| clippy::print_literal clippy::clone_on_copy clippy::single_char_pattern clippy::into_iter_on_ref clippy::match_like_matches_macro | ||||
| 2020-05-17 | bootstrap: fix typo | Ralf Jung | -1/+1 | |
| 2020-03-21 | Validate git setup before accessing functionality | Dillon Amburgey | -11/+43 | |
| 2020-03-18 | Tidy: fix running rustfmt twice | Eric Huss | -0/+3 | |
| 2020-02-27 | Ignore untracked paths when running `rustfmt` on repository. | Felix S. Klock II | -1/+12 | |
| 2020-01-14 | Tweak assertion note in fmt | Yuki Okushi | -1/+9 | |
| 2019-12-22 | Remove most files from format ignore list | Mark Rousskov | -20/+23 | |
| Also moves formatting to use edition 2018, and to be done in parallel. This brings near-linear speed ups (at least with a small amount of cores). | ||||
| 2019-12-22 | Do not run if rustfmt.toml does not exist | Mark Rousskov | -2/+7 | |
| distcheck (and generally publishing tarballs) will not package rustfmt.toml and we for now still support running tidy etc in those tarballs. | ||||
| 2019-12-21 | Implement rustfmt running manually using ignore crate | Mark Rousskov | -15/+46 | |
| This replaces cargo-fmt with rustfmt with --skip-children which should allow us to format code without running into rust-lang/rustfmt#3930. This also bumps up the version of rustfmt used to a more recent one. | ||||
| 2019-12-21 | Implement `./x.py fmt [--check]`. | Adam Perry | -0/+28 | |
