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.
Files changed (3) hide show
  1. package/README.md +2 -0
  2. package/package.json +1 -1
  3. package/src/cli.js +3 -1
package/README.md CHANGED
@@ -5,6 +5,8 @@
5
5
 
6
6
  Lint your [Cursor](https://cursor.com) rules. Catch common mistakes before they silently break your workflow.
7
7
 
8
+ ![cursor-lint demo](demo.png)
9
+
8
10
  ```bash
9
11
  npx cursor-lint
10
12
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cursor-lint",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Lint your Cursor rules \u2014 catch common mistakes before they break your workflow",
5
5
  "main": "src/index.js",
6
6
  "bin": {
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.0';
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);