From 58bdb1c099a9a1d473d5f7dbd119c351da6c17dd Mon Sep 17 00:00:00 2001 From: Joe Morris Date: Thu, 19 Jan 2023 09:34:55 -0500 Subject: [PATCH] chore: add .c8rc to configure c8 --- .c8rc | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .c8rc diff --git a/.c8rc b/.c8rc new file mode 100644 index 000000000..b9cb834cb --- /dev/null +++ b/.c8rc @@ -0,0 +1,6 @@ +{ + "all": true, + "include": ["client/out/**"], + "exclude": ["**/node_modules/**", "client/out/test/"], + "reporter": ["html", "text"] +}