cursor-lint 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package.json +1 -1
- package/src/cli.js +3 -1
package/README.md
CHANGED
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -6,7 +6,7 @@ const { verifyProject } = require('./verify');
|
|
|
6
6
|
const { initProject } = require('./init');
|
|
7
7
|
const { fixProject } = require('./fix');
|
|
8
8
|
|
|
9
|
-
const VERSION = '0.4.
|
|
9
|
+
const VERSION = '0.4.1';
|
|
10
10
|
|
|
11
11
|
const RED = '\x1b[31m';
|
|
12
12
|
const YELLOW = '\x1b[33m';
|
|
@@ -246,6 +246,8 @@ async function main() {
|
|
|
246
246
|
if (totalErrors > 0) {
|
|
247
247
|
console.log(`${DIM}Need help fixing these? Get a full setup review:${RESET}`);
|
|
248
248
|
console.log(`${CYAN}https://cursorrulespacks.gumroad.com/l/cursor-setup-audit${RESET}\n`);
|
|
249
|
+
} else if (totalPassed > 0) {
|
|
250
|
+
console.log(`${DIM}If cursor-lint saved you time: ${CYAN}https://github.com/cursorrulespacks/cursor-lint${RESET} ${DIM}(⭐ helps others find it)${RESET}\n`);
|
|
249
251
|
}
|
|
250
252
|
|
|
251
253
|
process.exit(totalErrors > 0 ? 1 : 0);
|