From bde831299d58c5deb5a67d37ce511aeb82215982 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Thu, 7 Apr 2022 10:31:44 +0200 Subject: [PATCH] Add LiveView plugin to formatter Signed-off-by: Thomas Citharel --- .formatter.exs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.formatter.exs b/.formatter.exs index 023562bf3..deac09627 100644 --- a/.formatter.exs +++ b/.formatter.exs @@ -1,3 +1,4 @@ [ - inputs: ["{mix,.formatter}.exs", "{config,lib,test,priv}/**/*.{ex,exs}"] + plugins: [Phoenix.LiveView.HTMLFormatter], + inputs: ["{mix,.formatter}.exs", "{config,lib,test,priv}/**/*.{ex,exs,heex}"] ]