@codfish/eslint-config 12.1.0 → 12.1.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 -0
  2. package/index.js +3 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -169,6 +169,11 @@ import codfish from '@codfish/eslint-config';
169
169
  export default defineConfig(
170
170
  codfish,
171
171
 
172
+ // Custom ignores
173
+ {
174
+ ignores: ['some-directory'],
175
+ },
176
+
172
177
  {
173
178
  files: ['**/*.spec.{js,ts,jsx,tsx}'],
174
179
  rules: {
package/index.js CHANGED
@@ -145,7 +145,6 @@ export default defineConfig([
145
145
  'coverage',
146
146
  '.vercel',
147
147
  '**/logs/',
148
- 'bin/*',
149
148
  '**/dist/',
150
149
  '**/dist-ssr/',
151
150
  '**/cache/',
@@ -179,6 +178,9 @@ export default defineConfig([
179
178
  '.tmp',
180
179
  '.eslintcache',
181
180
  '*.tsbuildinfo',
181
+ 'node_modules',
182
+ 'pnpm-lock.yaml',
183
+ 'pnpm-lock.*.yaml',
182
184
  ],
183
185
  },
184
186
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codfish/eslint-config",
3
- "version": "12.1.0",
3
+ "version": "12.1.1",
4
4
  "description": "Modern ESLint configuration with TypeScript, React, and testing framework support.",
5
5
  "type": "module",
6
6
  "repository": {