@codfish/eslint-config 0.0.0-PR-132--f3e20ad → 0.0.0-PR-132--f93ca2a

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 (2) hide show
  1. package/index.js +5 -1
  2. package/package.json +3 -3
package/index.js CHANGED
@@ -290,7 +290,11 @@ export default defineConfig([
290
290
  plugins: { markdown },
291
291
  extends: ['markdown/recommended'],
292
292
  rules: {
293
- 'markdown/no-missing-label-refs': ['error', { allowLabels: ['!NOTE', '!WARNING', '!IMPORTANT', '!TIP'] }],
293
+ // Allow GitHub-style alerts and checkbox syntax (task lists)
294
+ 'markdown/no-missing-label-refs': [
295
+ 'error',
296
+ { allowLabels: ['!NOTE', '!WARNING', '!IMPORTANT', '!TIP', '', 'x', 'X'] },
297
+ ],
294
298
  },
295
299
  },
296
300
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codfish/eslint-config",
3
- "version": "0.0.0-PR-132--f3e20ad",
3
+ "version": "0.0.0-PR-132--f93ca2a",
4
4
  "description": "Modern ESLint configuration with TypeScript, React, and testing framework support.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -46,8 +46,8 @@
46
46
  "build": "tsc --emitDeclarationOnly",
47
47
  "dev": "tsc --watch",
48
48
  "type-check": "tsc --noEmit",
49
- "lint": "eslint .",
50
- "fix": "prettier --write \"**/*.{json,css,scss,md}\" --config ./prettier.js && npm run lint -- --fix",
49
+ "lint": "eslint",
50
+ "format": "eslint --fix",
51
51
  "test": "vitest",
52
52
  "test:coverage": "vitest --coverage",
53
53
  "prepublishOnly": "npm run build",