We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a92995 commit b7fcaf0Copy full SHA for b7fcaf0
.prettierrc
@@ -1,5 +1,5 @@
1
{
2
"semi": false,
3
- "trailingComma": "es5",
+ "trailingComma": "all",
4
"singleQuote": true
5
}
packages/nuxt/.eslintrc
@@ -10,7 +10,11 @@
10
],
11
"space-before-function-paren": [
12
"error",
13
- "never"
+ {
14
+ "anonymous": "always",
15
+ "named": "never",
16
+ "asyncArrow": "always"
17
+ }
18
19
"comma-dangle": [
20
packages/nuxt/src/runtime/plugin.ts
@@ -11,7 +11,7 @@ export default defineNuxtPlugin(async (nuxtApp) => {
VueFire,
firebaseApp,
- }
+ },
)
if (process.server) {
0 commit comments