From 4ff776f1f328a04a8afc54430d9ec4f2b6ce52b6 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 8 Mar 2023 00:53:35 +0000 Subject: [PATCH] feat(rustfmt): add rustfmt default config of max_width = 80 --- install.sh | 1 + rustfmt.toml | 1 + 2 files changed, 2 insertions(+) create mode 100644 rustfmt.toml diff --git a/install.sh b/install.sh index 9a7777f..95379a0 100755 --- a/install.sh +++ b/install.sh @@ -33,6 +33,7 @@ SYMLINKS=( reek.yml rspec rubocop.yml + rustfmt.toml tmux tmux.conf zshenv diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..df99c69 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1 @@ +max_width = 80