Initial setup for the parser.

This commit is contained in:
Tom Alexander
2022-07-15 23:26:49 -04:00
commit ee9e6297a6
13 changed files with 350 additions and 0 deletions

13
rustfmt.toml Normal file
View File

@@ -0,0 +1,13 @@
imports_granularity = "Item"
# In rustfmt 2.0 I will want to adjust these settings.
#
# max_width controls the max length of a line before rustfmt gives up
# but that also scales the length of a bunch of other lines
# automaticaly due to width_heuristics. I want to find a way to enable
# rustfmt to work on longer lines when necessary without making my
# regular code too wide.
#
# max_width = 100
# error_on_line_overflow = true
# width_heuristics = "Off"