@codfish/eslint-config 0.0.0-PR-126--657bc40 → 0.0.0-PR-127--c039f19

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 +7 -0
  2. package/index.js +3 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -169,6 +169,13 @@ import codfish from '@codfish/eslint-config';
169
169
  export default defineConfig(
170
170
  codfish,
171
171
 
172
+ // Custom ignores
173
+ {
174
+ ignores: [
175
+ 'some-directory',
176
+ ],
177
+ }
178
+
172
179
  {
173
180
  files: ['**/*.spec.{js,ts,jsx,tsx}'],
174
181
  rules: {
package/index.js CHANGED
@@ -179,6 +179,9 @@ export default defineConfig([
179
179
  '.tmp',
180
180
  '.eslintcache',
181
181
  '*.tsbuildinfo',
182
+ 'node_modules',
183
+ 'pnpm-lock.yaml',
184
+ 'pnpm-lock.*.yaml',
182
185
  ],
183
186
  },
184
187
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codfish/eslint-config",
3
- "version": "0.0.0-PR-126--657bc40",
3
+ "version": "0.0.0-PR-127--c039f19",
4
4
  "description": "Modern ESLint configuration with TypeScript, React, and testing framework support.",
5
5
  "type": "module",
6
6
  "repository": {