@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.
- package/README.md +5 -0
- package/index.js +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
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
|
|