Skip to content

Commit 8a489e4

Browse files
committed
chore(lint): 🚨 Updated linter config
1 parent dfdc15f commit 8a489e4

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

eslint.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ export default createConfigForNuxt({
1010
rules: {
1111
'node/prefer-global/process': 'off',
1212
},
13-
ignores: ['.github/*', '**/*.md'],
13+
ignores: ['.github/**', '**/*.md'],
1414
}).prepend(
1515
antfu(
1616
{
17-
ignores: ['client/'],
17+
ignores: ['client/', 'docs/'],
1818
unocss: false,
1919
markdown: false,
2020
rules: {

src/runtime/server/utils/session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { createError, deleteCookie, sendRedirect, useSession } from 'h3'
66
import { createHooks } from 'hookable'
77
import * as providerPresets from '../../providers'
88
import { configMerger, refreshAccessToken, useOidcLogger } from './oidc'
9-
import { decryptToken, encryptToken, parseJwtToken } from './security'
9+
import { decryptToken, encryptToken } from './security'
1010
// @ts-expect-error - Missing Nitro type exports in Nuxt
1111
import { useRuntimeConfig, useStorage } from '#imports'
1212

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"exclude": [
44
"client",
55
"playground",
6-
"dist"
6+
"dist",
7+
"docs"
78
]
89
}

0 commit comments

Comments
 (0)