@codfish/eslint-config 0.0.0-PR-132--f93ca2a → 0.0.0-PR-132--78c4c74
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 +0 -4
- package/index.js +9 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -303,14 +303,10 @@ Add these settings to your `.vscode/settings.json` or user settings:
|
|
|
303
303
|
"javascriptreact",
|
|
304
304
|
"typescript",
|
|
305
305
|
"typescriptreact",
|
|
306
|
-
"vue",
|
|
307
306
|
"markdown",
|
|
308
307
|
"json",
|
|
309
308
|
"jsonc",
|
|
310
|
-
"github-actions-workflow",
|
|
311
309
|
"html",
|
|
312
|
-
"mdx",
|
|
313
|
-
"css",
|
|
314
310
|
"yml",
|
|
315
311
|
"yaml"
|
|
316
312
|
]
|
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',
|
|
@@ -310,7 +311,7 @@ export default defineConfig([
|
|
|
310
311
|
// rule and turning off ESLint rules that might conflict.
|
|
311
312
|
// IMPORTANT: KEEP THIS LAST TO OVERRIDE ESLINT!
|
|
312
313
|
{
|
|
313
|
-
files: ['**/*.{js,ts,jsx,tsx,md,yml,yaml,html,json,jsonc}'],
|
|
314
|
+
files: ['**/*.{js,ts,jsx,tsx,md,yml,yaml,html,json,jsonc,json5}'],
|
|
314
315
|
|
|
315
316
|
plugins: {
|
|
316
317
|
prettier: prettierPlugin,
|
package/package.json
CHANGED