We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bded1f5 commit d050d51Copy full SHA for d050d51
1 file changed
src/services/scanOutputToConsole.ts
@@ -151,19 +151,17 @@ export function outputToConsole(
151
}
152
153
// Filtered results for fix tips
154
- const filtered: Filtered = {
+ printFixTips(
155
+ {
156
missing: scanResult.missing,
157
duplicatesEnv: scanResult.duplicates?.env ?? [],
158
duplicatesEx: scanResult.duplicates?.example ?? [],
159
gitignoreIssue: hasGitignoreIssue ? { reason: 'not-ignored' } : null,
- };
160
-
161
- printFixTips(
162
- filtered,
163
- hasGitignoreIssue,
164
- isJson,
165
- opts.fix ?? false,
166
- );
+ },
+ hasGitignoreIssue,
+ isJson,
+ opts.fix ?? false,
+);
167
168
return { exitWithError };
169
0 commit comments