@codfish/eslint-config 0.0.0-PR-132--f3e20ad → 0.0.0-PR-132--1df6820
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/index.js +13 -8
- package/package.json +3 -3
package/index.js
CHANGED
|
@@ -214,18 +214,19 @@ export default defineConfig([
|
|
|
214
214
|
'.expo',
|
|
215
215
|
'**/tmp/',
|
|
216
216
|
'**/temp/',
|
|
217
|
-
'
|
|
217
|
+
'**/.tmp',
|
|
218
218
|
'.nx',
|
|
219
|
-
'
|
|
219
|
+
'**/.eslintcache',
|
|
220
220
|
'*.tsbuildinfo',
|
|
221
221
|
'node_modules',
|
|
222
222
|
'**/node_modules/',
|
|
223
|
-
'pnpm-lock.yaml',
|
|
224
|
-
'pnpm-lock.*.yaml',
|
|
223
|
+
'**/pnpm-lock.yaml',
|
|
224
|
+
'**/pnpm-lock.*.yaml',
|
|
225
225
|
'.history',
|
|
226
|
-
'
|
|
227
|
-
'yarn.lock',
|
|
228
|
-
'.
|
|
226
|
+
'**/.yarn',
|
|
227
|
+
'**/yarn.lock',
|
|
228
|
+
'**/package-lock.json',
|
|
229
|
+
'**/.yarnrc.yml',
|
|
229
230
|
'pacts',
|
|
230
231
|
'.claude',
|
|
231
232
|
'.__mf__temp',
|
|
@@ -290,7 +291,11 @@ export default defineConfig([
|
|
|
290
291
|
plugins: { markdown },
|
|
291
292
|
extends: ['markdown/recommended'],
|
|
292
293
|
rules: {
|
|
293
|
-
|
|
294
|
+
// Allow GitHub-style alerts and checkbox syntax (task lists)
|
|
295
|
+
'markdown/no-missing-label-refs': [
|
|
296
|
+
'error',
|
|
297
|
+
{ allowLabels: ['!NOTE', '!WARNING', '!IMPORTANT', '!TIP', '', 'x', 'X'] },
|
|
298
|
+
],
|
|
294
299
|
},
|
|
295
300
|
},
|
|
296
301
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codfish/eslint-config",
|
|
3
|
-
"version": "0.0.0-PR-132--
|
|
3
|
+
"version": "0.0.0-PR-132--1df6820",
|
|
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
|
-
"
|
|
49
|
+
"lint": "eslint",
|
|
50
|
+
"format": "eslint --fix",
|
|
51
51
|
"test": "vitest",
|
|
52
52
|
"test:coverage": "vitest --coverage",
|
|
53
53
|
"prepublishOnly": "npm run build",
|