Skip to content

Commit 3657ba4

Browse files
committed
chore: update eslint
1 parent 4087474 commit 3657ba4

File tree

4 files changed

+2799
-3866
lines changed

4 files changed

+2799
-3866
lines changed

functions/package.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "functions",
3+
"private": true,
34
"description": "Cloud Functions for Firebase",
45
"scripts": {
56
"serve": "firebase emulators:start --only functions",
@@ -15,9 +16,5 @@
1516
"dependencies": {
1617
"firebase-admin": "^13.0.0",
1718
"firebase-functions": "^6.0.1"
18-
},
19-
"devDependencies": {
20-
"firebase-functions-test": "^3.1.0"
21-
},
22-
"private": true
19+
}
2320
}

packages/nuxt/eslint.config.mjs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// @ts-check
2+
import { createConfigForNuxt } from '@nuxt/eslint-config/flat'
3+
4+
// Run `npx @eslint/config-inspector` to inspect the resolved config interactively
5+
export default createConfigForNuxt({
6+
features: {
7+
// Rules for module authors
8+
tooling: true,
9+
// Rules for formatting
10+
stylistic: true,
11+
},
12+
dirs: {
13+
src: ['./playground'],
14+
},
15+
}).append({
16+
rules: {
17+
'@typescript-eslint/no-explicit-any': 'off',
18+
},
19+
})

packages/nuxt/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"dev:build": "nuxi build playground"
3838
},
3939
"dependencies": {
40-
"@nuxt/kit": "^3.12.4",
40+
"@nuxt/kit": "^3.14.1592",
4141
"@posva/lru-cache": "^10.0.1",
4242
"lodash-es": "^4.17.21",
4343
"strip-json-comments": "^5.0.1"
@@ -62,16 +62,16 @@
6262
},
6363
"devDependencies": {
6464
"@firebase/app-types": "^0.9.3",
65-
"@nuxt/eslint-config": "^0.5.0",
66-
"@nuxt/module-builder": "^0.8.3",
67-
"@nuxt/schema": "^3.12.4",
68-
"@nuxt/test-utils": "^3.14.1",
65+
"@nuxt/eslint-config": "^0.7.3",
66+
"@nuxt/module-builder": "^0.8.4",
67+
"@nuxt/schema": "^3.14.1592",
68+
"@nuxt/test-utils": "^3.15.1",
6969
"@types/lodash-es": "^4.17.12",
70-
"eslint": "^8.56.0",
70+
"eslint": "^9.17.0",
7171
"firebase": "^11.1.0",
7272
"firebase-admin": "^13.0.1",
7373
"firebase-functions": "^6.1.2",
74-
"nuxt": "^3.12.4",
74+
"nuxt": "^3.14.1592",
7575
"vuefire": "workspace:*"
7676
}
7777
}

0 commit comments

Comments
 (0)