From 16965a3fc32fdf077961af3c1035d7d92344a915 Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Thu, 18 Jan 2024 22:25:20 +0100 Subject: [PATCH] fix(lint): add missing analytics (#1171) --- cmd/file_lint.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/file_lint.go b/cmd/file_lint.go index a69dbddeb..a19919804 100644 --- a/cmd/file_lint.go +++ b/cmd/file_lint.go @@ -74,6 +74,7 @@ func getRuleSet(ruleSetFile string) (*rulesets.RuleSet, error) { func executeLint(cmd *cobra.Command, args []string) error { verbosity, _ := cmd.Flags().GetInt("verbose") logbasics.Initialize(log.LstdFlags, verbosity) + _ = sendAnalytics("file-lint", "", modeLocal) customRuleSet, err := getRuleSet(args[0]) if err != nil {