| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-02-03 | Decrease line length limit for stderrs | Yuki Okushi | -1/+1 | |
| 2020-01-30 | Decrease line length limit for stderr files | Yuki Okushi | -1/+1 | |
| 2020-01-21 | Decrease line length limit for stderr files | Yuki Okushi | -1/+1 | |
| 2019-10-14 | new lints around `#[must_use]` fns | Andre Bogus | -0/+1 | |
| `must_use_unit` lints unit-returning functions with a `#[must_use]` attribute, suggesting to remove it. `double_must_use` lints functions with a plain `#[must_use]` attribute, but which return a type which is already `#[must_use]`, so the attribute has no benefit. `must_use_candidate` is a pedantic lint that lints functions and methods that return some non-unit type that is not already `#[must_use]` and suggests to add the annotation. | ||||
| 2019-07-17 | Decrease maximum length for stderr files | Philipp Hansch | -1/+1 | |
| Now at 275. | ||||
| 2019-07-07 | Add dev fmt subcommand | Michael Wright | -10/+9 | |
| 2019-05-17 | Collect at callsite, use eprintln instead of println | Philipp Hansch | -4/+3 | |
| 2019-05-16 | Add a stderr file length check to clippy_dev | Philipp Hansch | -0/+55 | |
| This adds a check to `clippy_dev` that enforces a maximum line count for `stderr` files. CI will fail if the line count is exceeded. It's currently set to `320` lines. Ideally this would be implemented in `compiletest-rs` but there are plans to move Rust's `compiletest` into the `compiletest-rs` repository and I don't want to do the work in `compiletest` twice. However, I also don't want to wait until the move is done, so I added the check to `clippy_dev` until it makes sense to add it to compiletest-rs. cc #2038 | ||||
