summaryrefslogtreecommitdiff
path: root/.clang-format
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-05-23 19:46:46 +0200
committerHampusM <hampus@hampusmat.com>2026-05-26 16:28:39 +0200
commit30c8c49ecd86ccd7fad07fee53b697c3b86c4fc0 (patch)
treea3a83450ea11ed9b6131aac5aca587418f20e708 /.clang-format
parentaa83c5cbc21227a5c647063efcaaca178884da9f (diff)
refactor(engine): use Rust edition 2021
This change is because of a rustfmt bug in the 2024 edition. For example, the following code snippet: ``` struct Value {} struct ParsingError {} trait Keyword {} impl Value { fn parse<KeywordT: Keyword>(value: &str, line_no: usize) -> Result<Self, ParsingError> { todo!(); } } ``` when formatted with `rustfmt --edition 2024 --emit stdout --config max_width=90,brace_style=AlwaysNextLine` becomes: ``` struct Value {} struct ParsingError {} trait Keyword {} impl Value { fn parse<KeywordT: Keyword>(value: &str, line_no: usize) -> Result<Self, ParsingError> { todo!(); } } ```
Diffstat (limited to '.clang-format')
0 files changed, 0 insertions, 0 deletions