From cbefb3cf40b10db96afce9637b141accda3cf859 Mon Sep 17 00:00:00 2001 From: Brandon Dyck Date: Sat, 24 Jun 2023 18:15:55 -0700 Subject: [PATCH] Config dev environment for F# --- .config/dotnet-tools.json | 12 ++++++++++++ .gitignore | 3 ++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 .config/dotnet-tools.json diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json new file mode 100644 index 0000000..02afeda --- /dev/null +++ b/.config/dotnet-tools.json @@ -0,0 +1,12 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "fantomas": { + "version": "6.0.8", + "commands": [ + "fantomas" + ] + } + } +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index cbbd0b5..57a3866 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ bin/ -obj/ \ No newline at end of file +obj/ +.fake \ No newline at end of file