Skip to content

Commit b7fcaf0

Browse files
committed
style: eslint conflicts
1 parent 6a92995 commit b7fcaf0

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.prettierrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"semi": false,
3-
"trailingComma": "es5",
3+
"trailingComma": "all",
44
"singleQuote": true
55
}

packages/nuxt/.eslintrc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010
],
1111
"space-before-function-paren": [
1212
"error",
13-
"never"
13+
{
14+
"anonymous": "always",
15+
"named": "never",
16+
"asyncArrow": "always"
17+
}
1418
],
1519
"comma-dangle": [
1620
"error",

packages/nuxt/src/runtime/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default defineNuxtPlugin(async (nuxtApp) => {
1111
VueFire,
1212
{
1313
firebaseApp,
14-
}
14+
},
1515
)
1616

1717
if (process.server) {

0 commit comments

Comments
 (0)