2020-05-17 13:04:07 +00:00
|
|
|
|
#+TITLE: Rust format config
|
2020-07-16 12:25:18 +00:00
|
|
|
|
#+setupfile: headers
|
2020-02-09 18:59:38 +00:00
|
|
|
|
#+OPTIONS: auto-id:t
|
|
|
|
|
#+HTML_HEAD_EXTRA: <meta name="description" content="Phundrak's Rust format config" />
|
|
|
|
|
#+HTML_HEAD_EXTRA: <meta property="og:title" content="Phundrak's Rust format config" />
|
|
|
|
|
#+HTML_HEAD_EXTRA: <meta property="og:description" content="Description of the Rust format config file of Phundrak" />
|
2020-09-28 16:09:45 +00:00
|
|
|
|
#+PROPERTY: header-args:toml :mkdirp yes :tangle ~/.rustfmt.toml
|
2020-02-09 18:59:38 +00:00
|
|
|
|
|
|
|
|
|
* Introduction
|
2020-12-10 09:20:21 +00:00
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:CUSTOM_ID: Introduction-465e99fe
|
|
|
|
|
:END:
|
2021-02-04 13:43:09 +00:00
|
|
|
|
The ~.rustfmt.toml~ file located in the ~$HOME~ directory is a global
|
|
|
|
|
configuration file for Rust’s code formatters, such as ~rustfmt~. In this file,
|
|
|
|
|
you can find how my Rust code is always formatted.
|
2020-02-09 18:59:38 +00:00
|
|
|
|
|
|
|
|
|
* General settings
|
2020-12-10 09:20:21 +00:00
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:CUSTOM_ID: General_settings-7f5cb2f6
|
|
|
|
|
:END:
|
2020-11-13 14:18:43 +00:00
|
|
|
|
First, we are using the 2018 edition of Rust.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
edition = "2018"
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
|
|
|
|
Put single-expression functions on a single line.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
fn_single_line = true
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
|
|
|
|
Format string literals where necessary.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
format_strings = true
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
|
|
|
|
Maximum width of each line
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
max_width = 80
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
|
|
|
|
Merge multiple imports into a single nested import.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
merge_imports = true
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
2020-02-09 18:59:38 +00:00
|
|
|
|
|
|
|
|
|
* Structs and Enums
|
2020-12-10 09:20:21 +00:00
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:CUSTOM_ID: Structs_and_Enums-6a2a856d
|
|
|
|
|
:END:
|
2021-02-04 13:43:09 +00:00
|
|
|
|
The maximum length of enum variant having discriminant, that gets vertically
|
|
|
|
|
aligned with others. Variants without discriminants would be ignored for the
|
|
|
|
|
purpose of alignment.
|
2020-11-13 14:18:43 +00:00
|
|
|
|
|
2021-02-04 13:43:09 +00:00
|
|
|
|
Note that this is not how much whitespace is inserted, but instead the longest
|
|
|
|
|
variant name that doesn't get ignored when aligning.
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
enum_discrim_align_threshold = 20
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
|
|
|
|
The maximum diff of width between struct fields to be aligned with each other.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
struct_field_align_threshold = 20
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
|
|
|
|
Reorder impl items. ~type~ and ~const~ are put first, then macros and methods.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
reorder_impl_items = true
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
2020-02-09 18:59:38 +00:00
|
|
|
|
|
|
|
|
|
* Comments
|
2020-12-10 09:20:21 +00:00
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:CUSTOM_ID: Comments-b1904bb0
|
|
|
|
|
:END:
|
2020-11-13 14:18:43 +00:00
|
|
|
|
Convert ~/* */~ comments to ~//~ comments where possible.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
normalize_comments = true
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
|
|
|
|
Break comments to fit on the line.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
wrap_comments = true
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
|
|
|
|
Report ~FIXME~ items in comments.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
report_fixme = "Always"
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
|
|
|
|
Report ~TODO~ items in comments.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
todo = "Always"
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
2020-02-09 18:59:38 +00:00
|
|
|
|
|
|
|
|
|
* Documentation
|
2020-12-10 09:20:21 +00:00
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:CUSTOM_ID: Documentation-0c7981c7
|
|
|
|
|
:END:
|
2020-11-13 14:18:43 +00:00
|
|
|
|
Format code snippet included in doc comments.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
format_code_in_doc_comments = true
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
|
|
|
|
Convert ~#![doc]~ and ~#[doc]~ attributes to ~//!~ and ~///~ doc comments.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
normalize_doc_attributes = true
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
2020-02-09 18:59:38 +00:00
|
|
|
|
|
|
|
|
|
* Whitespace
|
2020-12-10 09:20:21 +00:00
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:CUSTOM_ID: Whitespace-e8792b44
|
|
|
|
|
:END:
|
2020-11-13 14:18:43 +00:00
|
|
|
|
Use tab characters for indentation, spaces for alignment.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
hard_tabs = false
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
|
|
|
|
Number of spaces per tab.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
tab_spaces = 4
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|
|
|
|
|
I want newlines to always be Unix style.
|
|
|
|
|
#+BEGIN_SRC toml
|
2021-10-12 09:31:20 +00:00
|
|
|
|
newline_style = "Unix"
|
2020-11-13 14:18:43 +00:00
|
|
|
|
#+END_SRC
|