@codfish/eslint-config 0.0.0-PR-126--2c8454b → 0.0.0-PR-128--814f77e
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/README.md +6 -1
- package/index.js +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# @codfish/eslint-config
|
|
2
2
|
|
|
3
3
|
> Modern ESLint configuration with TypeScript, React/Next.js, YAML, Testing Library, and testing framework support using
|
|
4
|
-
> ESLint v9+ flat config format.
|
|
4
|
+
> ESLint v9+ flat config format.d
|
|
5
5
|
|
|
6
6
|
[](http://npm.im/@codfish/eslint-config)
|
|
7
7
|
[](http://npm-stat.com/charts.html?package=@codfish/eslint-config&from=2015-08-01)
|
|
@@ -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