Skip to content

Commit b45bb4f

Browse files
authored
feat: upgrade to nuxt 3 stable, upgrade minor deps as well (#57)
* feat: upgrade to nuxt stable, upgrade minor deps as well * fix: eslint allow console on server and in middleware as long as its not log
1 parent e90f6ac commit b45bb4f

File tree

6 files changed

+2087
-2697
lines changed

6 files changed

+2087
-2697
lines changed

.eslintrc

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,14 @@
22
"extends": [
33
"@nuxtjs/eslint-config-typescript"
44
],
5-
"rules": {}
5+
"overrides": [{
6+
"files": [
7+
"./playground/**/*.server.ts",
8+
"./playground/server/**/*.ts",
9+
"./playground/middleware/**.ts"
10+
],
11+
"rules": {
12+
"no-console": ["error", { "allow": ["info", "warn", "trace", "error"]}]
13+
}
14+
}]
615
}

0 commit comments

Comments
 (0)