From 4aee60f8b74a32b3aded45e7e0c0cda9f6f7090f Mon Sep 17 00:00:00 2001 From: Charlie Gerard Date: Tue, 7 May 2024 14:37:52 -0700 Subject: [PATCH] fix lint --- lib/commands/analytics/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/commands/analytics/index.js b/lib/commands/analytics/index.js index 8e059f4d..0fc6842a 100644 --- a/lib/commands/analytics/index.js +++ b/lib/commands/analytics/index.js @@ -118,7 +118,7 @@ async function fetchOrgAnalyticsData (time, spinner) { created_at: formattedDate, } }) - const data = {...formattedData.flat(1)} + const data = { ...formattedData.flat(1) } console.table(data, ['created_at', 'repository_name', 'total_critical_alerts', 'total_high_alerts', 'total_critical_added', 'total_high_added', 'total_critical_prevented', 'total_high_prevented', 'total_medium_prevented', 'total_low_prevented', 'top_five_alert_types']) }