Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Neo-Ciber94 committed Sep 20, 2023
1 parent 4cba030 commit f6426de
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"sourceType": "module",
"project": [
"./packages/*/tsconfig.json",
"./tsconfig.base.json"
"./tsconfig.json"
]
},
"plugins": [
Expand Down
2 changes: 1 addition & 1 deletion packages/mal-auth/src/common/utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as jose from 'jose';
import { DEFAULT_SESSION_DURATION_SECONDS } from '../handlers/fetchHandler';
import { Cookies } from './types';
import type { Cookies } from './types';
import { error } from './httpError';

const SECRET_KEY = process.env.MAL_SECRET_KEY || getDefaultSecretKey();
Expand Down
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "tsconfig.base.json"
}

0 comments on commit f6426de

Please sign in to comment.