-
Rust distribution:
- [x] move to nursery
- [x] move tests back to ui tests
- [x] ~~Wait for RLS/rustfmt distro issues to be worked out~~ https://github.com/nrc/dev-tools-team/issues/18#issuecomment…
-
To the best of my knowledge we don't have this info captured anywhere in a single place, but it's something we should have. Unfortunately I think the only way to pull this together will be scanning th…
-
**rustfmt.toml** contains the following line:
```toml
version = "Two"
```
When I run `cargo fmt` I get the following warning:
> *Warning: the version\` option is deprecated. Use \`style_edition\` in…
-
Something like:
```rust
struct A {}
#[derive(Debug)]
struct B {}
```
With a space on line 2, line 2 gets removed, but without a space, it stays. I'm not entirely sure what tool this issues i…
-
### Code
```Rust
#[tracing::instrument]
fn foo() -> u8 { 42 }
#[tracing::instrument]
fn bar() -> u8 {
42
}
```
### Current output
```Shell
warning: unnecessary braces around …
-
_From https://news.ycombinator.com/item?id=39121489_
> I've had cargo fmt eat my files when I was out of disk space. It created a new file, but the file length was 0, and my old file was gone.
r…
-
`#![cfg_attr(feature = "cargo-clippy", allow(clippy::inline_always,)]`
could be formatted to `#![cfg_attr(feature = "cargo-clippy", allow(clippy::inline_always)]`.
Note that this already works for…
-
**rust-analyzer version**: 0.3.1995-standalone
**rustc version**: rustc 1.78.0 (9b00956e5 2024-04-29)
**editor or extension**: VSCode (extension version v0.3.1995)
**code snippet to reproduce…
-
Tracking issue for unstable option: trailing_comma
-
[syntex project](https://github.com/serde-rs/syntex) is port of rustc parser to
be able to use it with stable compiler.
It used term crate as replace of https://github.com/rust-lang/rust/tree/mast…