]> git.lizzy.rs Git - rust.git/blob - src/tools/toolstate.toml
Add several lints into `unused` lint group
[rust.git] / src / tools / toolstate.toml
1 # This file reflects the current status of all tools which are allowed
2 # to fail without failing the build.
3 #
4 # There are three states a tool can be in:
5 # 1. Broken: The tool doesn't build
6 # 2. Compiling: The tool builds but its tests are failing
7 # 3. Testing: The tool builds and its tests are passing
8 #
9 # In the future there will be further states like "Distributing", which
10 # configures whether the tool is included in the Rust distribution.
11 #
12 # If a tool was working before your PR but is broken now, consider
13 # opening a PR against the tool so that it works with your changes.
14 # If the tool stops compiling, change its state to `Broken`. If it
15 # still builds, change it to `Compiling`.
16 # How to do that is described in
17 # "CONTRIBUTING.md#External Dependencies". If the effort required is not
18 # warranted (e.g. due to the tool abusing some API that you changed, and
19 # fixing the tool would mean a significant refactoring) remember to ping
20 # the tool authors, so they can fix it, instead of being surprised by the
21 # breakage.
22 #
23 # Each tool has a list of people to ping
24
25 # ping @oli-obk @RalfJung @eddyb
26 miri = "Broken"
27
28 # ping @Manishearth @llogiq @mcarton @oli-obk
29 clippy = "Broken"
30
31 # ping @nrc
32 rls = "Broken"
33
34 # ping @nrc
35 rustfmt = "Broken"