2023-06-19 23:13:56 -05:00
|
|
|
# rustfmt [![linux](https://github.com/rust-lang/rustfmt/actions/workflows/linux.yml/badge.svg?event=push)](https://github.com/rust-lang/rustfmt/actions/workflows/linux.yml) [![mac](https://github.com/rust-lang/rustfmt/actions/workflows/mac.yml/badge.svg?event=push)](https://github.com/rust-lang/rustfmt/actions/workflows/mac.yml) [![windows](https://github.com/rust-lang/rustfmt/actions/workflows/windows.yml/badge.svg?event=push)](https://github.com/rust-lang/rustfmt/actions/workflows/windows.yml) [![crates.io](https://img.shields.io/crates/v/rustfmt-nightly.svg)](https://crates.io/crates/rustfmt-nightly)
|
2015-04-29 22:09:33 -05:00
|
|
|
|
|
|
|
A tool for formatting Rust code according to style guidelines.
|
|
|
|
|
2015-11-09 12:34:44 -06:00
|
|
|
If you'd like to help out (and you should, it's a fun project!), see
|
2018-03-01 23:58:07 -06:00
|
|
|
[Contributing.md](Contributing.md) and our [Code of
|
|
|
|
Conduct](CODE_OF_CONDUCT.md).
|
2015-11-09 12:34:44 -06:00
|
|
|
|
2018-02-07 18:47:23 -06:00
|
|
|
You can use rustfmt in Travis CI builds. We provide a minimal Travis CI
|
2023-06-19 23:13:56 -05:00
|
|
|
configuration (see [here](#checking-style-on-a-ci-server)).
|
2018-02-07 18:47:23 -06:00
|
|
|
|
2015-12-15 22:58:20 -06:00
|
|
|
## Quick start
|
|
|
|
|
2018-08-02 04:09:52 -05:00
|
|
|
You can run `rustfmt` with Rust 1.24 and above.
|
2017-06-15 19:00:43 -05:00
|
|
|
|
2019-01-20 17:53:31 -06:00
|
|
|
### On the Stable toolchain
|
|
|
|
|
2015-12-15 22:58:20 -06:00
|
|
|
To install:
|
|
|
|
|
2019-01-20 17:53:31 -06:00
|
|
|
```sh
|
2018-12-09 13:36:09 -06:00
|
|
|
rustup component add rustfmt
|
2015-12-15 22:58:20 -06:00
|
|
|
```
|
|
|
|
|
2019-01-20 17:53:31 -06:00
|
|
|
To run on a cargo project in the current working directory:
|
2015-12-15 22:58:20 -06:00
|
|
|
|
2019-01-20 17:53:31 -06:00
|
|
|
```sh
|
2018-02-15 13:35:45 -06:00
|
|
|
cargo fmt
|
2015-12-15 22:58:20 -06:00
|
|
|
```
|
2015-10-23 15:51:29 -05:00
|
|
|
|
2019-01-20 17:53:31 -06:00
|
|
|
### On the Nightly toolchain
|
|
|
|
|
|
|
|
For the latest and greatest `rustfmt`, nightly is required.
|
|
|
|
|
|
|
|
To install:
|
|
|
|
|
|
|
|
```sh
|
2018-12-09 13:36:09 -06:00
|
|
|
rustup component add rustfmt --toolchain nightly
|
2018-04-02 21:10:50 -05:00
|
|
|
```
|
2019-01-20 17:53:31 -06:00
|
|
|
|
|
|
|
To run on a cargo project in the current working directory:
|
|
|
|
|
|
|
|
```sh
|
2018-04-02 21:10:50 -05:00
|
|
|
cargo +nightly fmt
|
|
|
|
```
|
2018-03-08 16:15:16 -06:00
|
|
|
|
|
|
|
## Limitations
|
|
|
|
|
2021-11-07 20:37:34 -06:00
|
|
|
Rustfmt tries to work on as much Rust code as possible. Sometimes, the code
|
2021-12-02 21:35:30 -06:00
|
|
|
doesn't even need to compile! In general, we are looking to limit areas of
|
|
|
|
instability; in particular, post-1.0, the formatting of most code should not
|
|
|
|
change as Rustfmt improves. However, there are some things that Rustfmt can't
|
|
|
|
do or can't do well (and thus where formatting might change significantly,
|
|
|
|
even post-1.0). We would like to reduce the list of limitations over time.
|
2018-03-08 16:15:16 -06:00
|
|
|
|
|
|
|
The following list enumerates areas where Rustfmt does not work or where the
|
|
|
|
stability guarantees do not apply (we don't make a distinction between the two
|
|
|
|
because in the future Rustfmt might work on code where it currently does not):
|
|
|
|
|
|
|
|
* a program where any part of the program does not parse (parsing is an early
|
|
|
|
stage of compilation and in Rust includes macro expansion).
|
|
|
|
* Macro declarations and uses (current status: some macro declarations and uses
|
|
|
|
are formatted).
|
|
|
|
* Comments, including any AST node with a comment 'inside' (Rustfmt does not
|
|
|
|
currently attempt to format comments, it does format code with comments inside, but that formatting may change in the future).
|
|
|
|
* Rust code in code blocks in comments.
|
|
|
|
* Any fragment of a program (i.e., stability guarantees only apply to whole
|
|
|
|
programs, even where fragments of a program can be formatted today).
|
|
|
|
* Code containing non-ascii unicode characters (we believe Rustfmt mostly works
|
|
|
|
here, but do not have the test coverage or experience to be 100% sure).
|
|
|
|
* Bugs in Rustfmt (like any software, Rustfmt has bugs, we do not consider bug
|
|
|
|
fixes to break our stability guarantees).
|
|
|
|
|
|
|
|
|
2015-12-13 13:17:26 -06:00
|
|
|
## Running
|
|
|
|
|
2015-12-15 21:41:58 -06:00
|
|
|
You can run Rustfmt by just typing `rustfmt filename` if you used `cargo
|
2015-12-13 13:17:26 -06:00
|
|
|
install`. This runs rustfmt on the given file, if the file includes out of line
|
|
|
|
modules, then we reformat those too. So to run on a whole module or crate, you
|
|
|
|
just need to run on the root file (usually mod.rs or lib.rs). Rustfmt can also
|
2015-12-15 21:41:58 -06:00
|
|
|
read data from stdin. Alternatively, you can use `cargo fmt` to format all
|
|
|
|
binary and library targets of your crate.
|
2015-12-13 13:17:26 -06:00
|
|
|
|
2018-12-06 09:31:43 -06:00
|
|
|
You can run `rustfmt --help` for information about available arguments.
|
2021-11-07 20:37:34 -06:00
|
|
|
The easiest way to run rustfmt against a project is with `cargo fmt`. `cargo fmt` works on both
|
|
|
|
single-crate projects and [cargo workspaces](https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html).
|
|
|
|
Please see `cargo fmt --help` for usage information.
|
|
|
|
|
|
|
|
You can specify the path to your own `rustfmt` binary for cargo to use by setting the`RUSTFMT`
|
|
|
|
environment variable. This was added in v1.4.22, so you must have this version or newer to leverage this feature (`cargo fmt --version`)
|
|
|
|
|
|
|
|
### Running `rustfmt` directly
|
|
|
|
|
|
|
|
To format individual files or arbitrary codes from stdin, the `rustfmt` binary should be used. Some
|
|
|
|
examples follow:
|
|
|
|
|
|
|
|
- `rustfmt lib.rs main.rs` will format "lib.rs" and "main.rs" in place
|
|
|
|
- `rustfmt` will read a code from stdin and write formatting to stdout
|
|
|
|
- `echo "fn main() {}" | rustfmt` would emit "fn main() {}".
|
|
|
|
|
|
|
|
For more information, including arguments and emit options, see `rustfmt --help`.
|
|
|
|
|
|
|
|
### Verifying code is formatted
|
2016-04-10 12:03:54 -05:00
|
|
|
|
2018-05-12 21:13:24 -05:00
|
|
|
When running with `--check`, Rustfmt will exit with `0` if Rustfmt would not
|
|
|
|
make any formatting changes to the input, and `1` if Rustfmt would make changes.
|
|
|
|
In other modes, Rustfmt will exit with `1` if there was some error during
|
|
|
|
formatting (for example a parsing or internal error) and `0` if formatting
|
|
|
|
completed without error (whether or not changes were made).
|
2016-04-14 18:51:50 -05:00
|
|
|
|
|
|
|
|
2015-12-13 13:17:26 -06:00
|
|
|
|
2015-11-12 03:44:28 -06:00
|
|
|
## Running Rustfmt from your editor
|
2015-11-03 22:45:01 -06:00
|
|
|
|
2016-10-10 20:35:07 -05:00
|
|
|
* [Vim](https://github.com/rust-lang/rust.vim#formatting-with-rustfmt)
|
2016-10-05 08:19:21 -05:00
|
|
|
* [Emacs](https://github.com/rust-lang/rust-mode)
|
2017-05-31 16:39:12 -05:00
|
|
|
* [Sublime Text 3](https://packagecontrol.io/packages/RustFmt)
|
2015-11-16 23:24:42 -06:00
|
|
|
* [Atom](atom.md)
|
2022-08-20 23:19:43 -05:00
|
|
|
* [Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
|
2018-10-23 02:07:46 -05:00
|
|
|
* [IntelliJ or CLion](intellij.md)
|
2015-11-03 22:45:01 -06:00
|
|
|
|
2018-07-12 05:28:55 -05:00
|
|
|
|
2016-08-24 14:25:31 -05:00
|
|
|
## Checking style on a CI server
|
|
|
|
|
|
|
|
To keep your code base consistently formatted, it can be helpful to fail the CI build
|
2018-05-18 09:40:58 -05:00
|
|
|
when a pull request contains unformatted code. Using `--check` instructs
|
2016-08-24 14:25:31 -05:00
|
|
|
rustfmt to exit with an error code if the input is not formatted correctly.
|
2018-07-12 05:28:55 -05:00
|
|
|
It will also print any found differences. (Older versions of Rustfmt don't
|
|
|
|
support `--check`, use `--write-mode diff`).
|
2016-08-24 14:25:31 -05:00
|
|
|
|
2021-11-07 20:37:34 -06:00
|
|
|
A minimal Travis setup could look like this (requires Rust 1.31.0 or greater):
|
2016-08-24 14:25:31 -05:00
|
|
|
|
|
|
|
```yaml
|
|
|
|
language: rust
|
2017-02-26 13:34:32 -06:00
|
|
|
before_script:
|
2018-12-09 13:36:09 -06:00
|
|
|
- rustup component add rustfmt
|
2016-08-24 14:25:31 -05:00
|
|
|
script:
|
2017-02-26 13:34:32 -06:00
|
|
|
- cargo build
|
|
|
|
- cargo test
|
2019-08-09 03:42:50 -05:00
|
|
|
- cargo fmt --all -- --check
|
2016-08-24 14:25:31 -05:00
|
|
|
```
|
|
|
|
|
2018-07-12 05:28:55 -05:00
|
|
|
See [this blog post](https://medium.com/@ag_dubs/enforcing-style-in-ci-for-rust-projects-18f6b09ec69d)
|
|
|
|
for more info.
|
|
|
|
|
2015-08-31 21:42:58 -05:00
|
|
|
## How to build and test
|
2015-10-23 15:51:29 -05:00
|
|
|
|
2015-04-29 22:09:33 -05:00
|
|
|
`cargo build` to build.
|
|
|
|
|
|
|
|
`cargo test` to run all tests.
|
|
|
|
|
2018-03-01 19:12:33 -06:00
|
|
|
To run rustfmt after this, use `cargo run --bin rustfmt -- filename`. See the
|
|
|
|
notes above on running rustfmt.
|
|
|
|
|
2015-11-03 22:45:01 -06:00
|
|
|
|
2016-01-13 22:58:23 -06:00
|
|
|
## Configuring Rustfmt
|
2015-11-09 12:34:44 -06:00
|
|
|
|
|
|
|
Rustfmt is designed to be very configurable. You can create a TOML file called
|
2016-07-31 16:32:35 -05:00
|
|
|
`rustfmt.toml` or `.rustfmt.toml`, place it in the project or any other parent
|
|
|
|
directory and it will apply the options in that file. See `rustfmt
|
2018-08-10 19:05:54 -05:00
|
|
|
--help=config` for the options which are available, or if you prefer to see
|
2019-04-10 10:36:28 -05:00
|
|
|
visual style previews, [GitHub page](https://rust-lang.github.io/rustfmt/).
|
2015-11-09 12:34:44 -06:00
|
|
|
|
2017-06-21 12:45:24 -05:00
|
|
|
By default, Rustfmt uses a style which conforms to the [Rust style guide][style
|
2017-11-21 12:25:36 -06:00
|
|
|
guide] that has been formalized through the [style RFC
|
|
|
|
process][fmt rfcs].
|
2015-11-09 12:34:44 -06:00
|
|
|
|
2017-12-04 01:10:36 -06:00
|
|
|
Configuration options are either stable or unstable. Stable options can always
|
|
|
|
be used, while unstable ones are only available on a nightly toolchain, and opt-in.
|
2019-04-10 10:36:28 -05:00
|
|
|
See [GitHub page](https://rust-lang.github.io/rustfmt/) for details.
|
2017-12-04 01:10:36 -06:00
|
|
|
|
2019-01-20 17:53:31 -06:00
|
|
|
### Rust's Editions
|
|
|
|
|
|
|
|
Rustfmt is able to pick up the edition used by reading the `Cargo.toml` file if
|
|
|
|
executed through the Cargo's formatting tool `cargo fmt`. Otherwise, the edition
|
|
|
|
needs to be specified in `rustfmt.toml`, e.g., with `edition = "2018"`.
|
2015-11-09 12:34:44 -06:00
|
|
|
|
2016-05-15 17:09:53 -05:00
|
|
|
## Tips
|
2015-11-03 22:45:01 -06:00
|
|
|
|
2018-10-29 04:27:19 -05:00
|
|
|
* For things you do not want rustfmt to mangle, use `#[rustfmt::skip]`
|
2019-07-16 19:40:33 -05:00
|
|
|
* To prevent rustfmt from formatting a macro or an attribute,
|
2021-06-21 04:11:37 -05:00
|
|
|
use `#[rustfmt::skip::macros(target_macro_name)]` or
|
2019-07-16 19:40:33 -05:00
|
|
|
`#[rustfmt::skip::attributes(target_attribute_name)]`
|
2019-03-24 12:25:10 -05:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```rust
|
2021-06-21 04:11:37 -05:00
|
|
|
#![rustfmt::skip::attributes(custom_attribute)]
|
2019-07-16 19:40:33 -05:00
|
|
|
|
|
|
|
#[custom_attribute(formatting , here , should , be , Skipped)]
|
2019-03-24 12:25:10 -05:00
|
|
|
#[rustfmt::skip::macros(html)]
|
|
|
|
fn main() {
|
|
|
|
let macro_result1 = html! { <div>
|
|
|
|
Hello</div>
|
|
|
|
}.to_string();
|
|
|
|
```
|
2016-07-31 16:32:35 -05:00
|
|
|
* When you run rustfmt, place a file named `rustfmt.toml` or `.rustfmt.toml` in
|
|
|
|
target file directory or its parents to override the default settings of
|
2017-09-18 21:56:49 -05:00
|
|
|
rustfmt. You can generate a file containing the default configuration with
|
2018-07-22 06:00:33 -05:00
|
|
|
`rustfmt --print-config default rustfmt.toml` and customize as needed.
|
2015-11-03 22:45:01 -06:00
|
|
|
* After successful compilation, a `rustfmt` executable can be found in the
|
|
|
|
target directory.
|
2016-05-15 17:09:53 -05:00
|
|
|
* If you're having issues compiling Rustfmt (or compile errors when trying to
|
|
|
|
install), make sure you have the most recent version of Rust installed.
|
2016-04-14 13:48:21 -05:00
|
|
|
|
2018-06-16 15:12:21 -05:00
|
|
|
* You can change the way rustfmt emits the changes with the --emit flag:
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2019-01-20 17:53:31 -06:00
|
|
|
```sh
|
2018-09-12 21:01:34 -05:00
|
|
|
cargo fmt -- --emit files
|
2018-06-16 15:12:21 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
| Flag |Description| Nightly Only |
|
|
|
|
|:---:|:---:|:---:|
|
|
|
|
| files | overwrites output to files | No |
|
2018-09-12 21:01:34 -05:00
|
|
|
| stdout | writes output to stdout | No |
|
2018-06-16 15:12:21 -05:00
|
|
|
| coverage | displays how much of the input file was processed | Yes |
|
|
|
|
| checkstyle | emits in a checkstyle format | Yes |
|
2019-08-15 21:14:53 -05:00
|
|
|
| json | emits diffs in a json format | Yes |
|
2018-06-16 15:12:21 -05:00
|
|
|
|
2016-04-14 13:48:21 -05:00
|
|
|
## License
|
|
|
|
|
|
|
|
Rustfmt is distributed under the terms of both the MIT license and the
|
|
|
|
Apache License (Version 2.0).
|
|
|
|
|
|
|
|
See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT) for details.
|
2017-06-21 12:45:24 -05:00
|
|
|
|
|
|
|
[rust]: https://github.com/rust-lang/rust
|
2021-07-25 22:57:19 -05:00
|
|
|
[fmt rfcs]: https://github.com/rust-dev-tools/fmt-rfcs
|
|
|
|
[style guide]: https://github.com/rust-dev-tools/fmt-rfcs/blob/master/guide/guide.md
|