From dd621e5511ad49e38e55fa6ab1b908c0a3883fe5 Mon Sep 17 00:00:00 2001
From: Mark Otto <markd.otto@gmail.com>
Date: Thu, 28 Dec 2017 10:24:08 -0800
Subject: [PATCH] Improve lint vars output messaging (#25049)

---
 build/lint-vars.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build/lint-vars.js b/build/lint-vars.js
index 909f5293d7..6164392e5d 100644
--- a/build/lint-vars.js
+++ b/build/lint-vars.js
@@ -44,7 +44,7 @@ function findUnusedVars(dir) {
   // Array of all Sass variables
   const variables = sassFilesString.match(/(^\$[a-zA-Z0-9_-]+[^:])/gm)
 
-  console.log(`There's a total of ${variables.length} variables.`)
+  console.log(`Found ${variables.length} total variables.`)
 
   // Loop through each variable
   variables.forEach((variable) => {
@@ -52,7 +52,7 @@ function findUnusedVars(dir) {
     const count = (sassFilesString.match(re) || []).length
 
     if (count === 1) {
-      console.log(`Variable "${variable}" is only used once!`)
+      console.log(`Variable "${variable}" is not being used.`)
       unusedVarsFound = true
       globalSuccess = false
     }
-- 
GitLab