[go: up one dir, main page]

blob: fe31a04f581981d839dced27a36966064a9e6774 [file] [log] [blame]
Shahbaz Youssefi2a42e882025-10-22 14:23:101# This file defines the Rust style for automatic reformatting.
2# See also https://rust-lang.github.io/rustfmt
3#
4# ANGLE's rustfmt file mostly follows Chromium's, with the exception of line widths.
5
6# Rust language edition to be used by the parser.
7edition = "2024"
8# Version of the formatting rules to use.
9style_edition = "2024"
10# Line endings will be converted to \n.
11newline_style = "Unix"
12wrap_comments = true
13comment_width = 100
14max_width = 100
15# The "Default" setting has a heuristic which splits lines too aggresively.
16# We are willing to revisit this setting in future versions of rustfmt.
17# Bugs:
18# * https://github.com/rust-lang/rustfmt/issues/3119
19# * https://github.com/rust-lang/rustfmt/issues/3120
20use_small_heuristics = "Max"