cursor-lint 0.3.0 → 0.3.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.
Files changed (3) hide show
  1. package/README.md +5 -1
  2. package/package.json +1 -1
  3. package/src/cli.js +6 -1
package/README.md CHANGED
@@ -81,10 +81,14 @@ cursor-lint --version Show version
81
81
 
82
82
  Every check in cursor-lint comes from [actual experiments](https://dev.to/nedcodes) testing what Cursor does and doesn't follow. Not guesswork — data.
83
83
 
84
+ ## Need a deeper review?
85
+
86
+ cursor-lint catches structural issues. For a full review of your rules, project structure, and model settings, I offer [$50 async setup audits](https://cursorrulespacks.gumroad.com/l/cursor-setup-audit). You get a written report with specific fixes, not generic advice.
87
+
84
88
  ## License
85
89
 
86
90
  MIT
87
91
 
88
92
  ---
89
93
 
90
- Made by [nedcodes](https://dev.to/nedcodes)
94
+ Made by [nedcodes](https://dev.to/nedcodes) · [Free rules collection](https://github.com/cursorrulespacks/cursorrules-collection) · [Setup audits](https://cursorrulespacks.gumroad.com/l/cursor-setup-audit)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cursor-lint",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Lint your Cursor rules — catch common mistakes before they break your workflow",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -5,7 +5,7 @@ const { lintProject } = require('./index');
5
5
  const { verifyProject } = require('./verify');
6
6
  const { initProject } = require('./init');
7
7
 
8
- const VERSION = '0.3.0';
8
+ const VERSION = '0.3.1';
9
9
 
10
10
  const RED = '\x1b[31m';
11
11
  const YELLOW = '\x1b[33m';
@@ -206,6 +206,11 @@ async function main() {
206
206
  if (totalPassed > 0) parts.push(`${GREEN}${totalPassed} passed${RESET}`);
207
207
  console.log(parts.join(', ') + '\n');
208
208
 
209
+ if (totalErrors > 0) {
210
+ console.log(`${DIM}Need help fixing these? Get a full setup review:${RESET}`);
211
+ console.log(`${CYAN}https://cursorrulespacks.gumroad.com/l/cursor-setup-audit${RESET}\n`);
212
+ }
213
+
209
214
  process.exit(totalErrors > 0 ? 1 : 0);
210
215
  }
211
216
  }