You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log('*! If you\'re making a new rule, you can ignore this before review. !*');
100
+
101
+
console.log();
102
+
console.log(summary);
103
+
80
104
const{format}=awaiteslint.loadFormatter();
105
+
console.log();
81
106
console.log(format(results));
82
107
83
108
console.log();
84
-
console.log(`You need to fix the failed test${errorCount+warningCount>1 ? 's' : ''} above and run \`npm run run-rules-on-codebase <file>\` to check again.`);
109
+
console.log(`You need to fix the failed test${errorCount+warningCount>1 ? 's' : ''} above and run \`npm run run-rules-on-codebase -- <file>\` to check again.`);
85
110
86
111
if(hasFixable){
87
112
console.log();
88
-
console.log('You may also want run `npm run run-rules-on-codebase <file> --fix` to fix fixable problems.');
113
+
console.log('You may also want run `npm run run-rules-on-codebase -- <file> --fix` to fix fixable problems.');
89
114
}
90
-
91
-
console.log();
92
-
console.log('* If you\'re making a new rule, you can fix this later. *');
0 commit comments